1php artisan make:model MODEL_PATH\MODEL_NAME -mcrs
2or
3php artisan make:model MODEL_PATH\MODEL_NAME -a
4
5-a, --all Generate a migration, factory, and resource controller for the model
6-m, --migration Create a new migration file for the model.
7-c, --controller Create a new controller for the model.
8-r, --resource Indicates if the generated controller should be a resource controller
9-s, --seeder Create a new seeder file for the model.
1php artisan make:model MODEL_PATH\MODEL_NAME -ms
2
3-m, --migration Create a new migration file for the model.
4-s, --seeder Create a new seeder file for the model.