I can create a model and resource controller (binded to model) with the following command
php artisan make:controller TodoController --resource --model=Todo
php artisan make:model PurchaseRequest -crm
The Result is
Model created successfully. Created Migration: 2018_11_11_011541_create_purchase_requests_table Controller created successfully.
Just use -crm instead of -mcr