how to make model resource controller and migration in one command larave; code example
Example 1: laravel make migration controller resource mcr
php artisan make:model Todo -mcr
php artisan make:model <name> -mcr
Example 2: make full laravel model ( with migration, controller and resource )
php artisan make:model Product -mcr