xxxxxxxxxx
php artisan make:model Settings --migration
xxxxxxxxxx
# If you would like to generate a database migration when you
# generate the model, you may use the --migration or -m option:
php artisan make:model Flight --migration
php artisan make:model Flight -m
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
xxxxxxxxxx
php artisan make:model ModelName -m
//In the above command "-m" will create migration file