Try this simple Laravel migration and avoid using Mysql and others php artisan make:migration create_tasks_table –create=tasks php artisan make:model Task
Day: May 18, 2020
Composer Laravel related commands
composer create-project laravel/laravel folder_name composer install composer update composer dump-autoload [–optimize] composer self-update
Laravel Artisan most used commands
make:channel Create a new channel class make:command Create a new Artisan command make:controller Create a new controller class make:event Create a new event class make:exception