make migration with model code example
Example 1: artisan make migration with model
php artisan make:Model Status -m
Example 2: php artisan make :migration with model
php artisan make:model ModelName -a
Example 3: make migration with model
php artisan make:model -m <Model name>