How to create model controller and resource at once using a php artisan command code example
Example 1: create model controller migration factory laravel in one command
php artisan make:model Customer
php artisan make:controller CustomersController --resource
php artisan make:controller CustomersController --model=Customer
php artisan make:model Modelname -crmf
Example 2: create model with controller laravel
php artisan make:model Customer
php artisan make:controller CustomersController --resource