php artisan make:controller and model code example
Example 1: create model with controller laravel
php artisan make:controller CustomersController --model=Customer
Example 2: make model controller in single command
php artisan make:model Customer
php artisan make:controller CustomersController --resource
php artisan make:controller CustomersController --model=Customer
php artisan make:model User -mcr
Example 3: create model with controller laravel
php artisan make:model Customer
php artisan make:controller CustomersController --resource