Complete the code to specify the directory where Laravel stores its route files.
routes/[1]Laravel stores route definitions in the routes/web.php file for web routes.
Complete the code to indicate the directory where Laravel stores its controllers.
app/Http/[1]Controllers in Laravel are stored in the app/Http/Controllers directory.
Fix the error in the path to the Laravel configuration directory.
base_path('[1]')
The correct directory for configuration files in Laravel is config, not 'configs' or others.
Fill both blanks to complete the Laravel artisan command that creates a new model and migration.
php artisan make:[1] [2] --migration
The command php artisan make:model Post --migration creates a new model named Post with a migration file.
Fill all three blanks to complete the Laravel directory path for storing Blade view files.
resources/[1]/[2]/[3].blade.php
Blade view files are stored in resources/views/layouts/app.blade.php by default.