php artisan make:model Todo -mcr
php artisan make:model <name> -mcr
#create model
php artisan make:model Model_Name
#create model with migration
php artisan make:model Model_Name -m
#create model with migration and controller
php artisan make:model Model_Name -mcr