PHP Artisan Migrate Create Table
php artisan make:migration create_users_table
php artisan migrate
Shadow
php artisan make:migration create_users_table
php artisan migrate
php artisan make:model Model_Name -m
php artisan make:model Todo -mcr
php artisan make:migration create_users_table
#create model
php artisan make:model Model_Name
#create model with migration
php artisan make:model Model_Name -m
#create model with migration and controller
php artisan make:model Model_Name -mcr
php artisan make:model Settings --migration