xxxxxxxxxx
php artisan make:model ModelName -mcr
xxxxxxxxxx
#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
xxxxxxxxxx
php artisan make:model ModelName -m
//or
php artisan make:model ModelName --migration