
Laravel Project Skeleton v10 vs v11
Laravel 11 new directory structure .As first you see the project directory structure of laravel 10 and laravel 11 looks same

But when you dive into the subdirectories , the file count has been dropped.Lets compare Laravel 10 with Laravel 11
'app' Directory
 'config' Directory
No file exists in the config directory except the .gitkeep file  If you want to publish any file just run the artisan command# config/database.php
php artisan config:publish database
Now you can publish only those files that you need only.
'database' Directory
Inside migrations **create_personal_access_tokens_table.php **no longer exists because we only need it when we are creating api and new column added **create_cache_table.php.**  **failed_jobs.php** had been renamed to jobs.php.It includes all jobs like **failed_jobs , jobs , job_batches.** Also, the default database will be **sqlite**.'route' Directory
In laravel 11 , you only contain **web.php** and **console.php**  If you want to create api.php and channels.php.You can run the following commandsphp artisan install:api
php artisan install:broadcasting