public function boot(): void { Schema::defaultStringLength(191); }
Laravel can display an overview of your application's configuration, drivers, and environment via the about Artisan command.
php artisan about
If you're only interested in a particular section of the application overview output, you may filter for that section using the --only option:
php artisan about --only=environment
php artisan make:model Note -m
php artisan migrate:refresh --seed
php artisan make:controller NoteController
for work smarter, we add layout page into the blade folder, instead of adding manually each file into the folder
I had a problem with running vite cofiguration on my project, then i run the npm install once again and everything fixed.
Schema::defaultStringLength(191);
Inertia: is not a framework, it is a glue that stick the frontend into the backend => in this project will be use to connect laravel into the react project
\App\Models\Task::query()->paginate(5)->all()
php artisan route:list