I can create a model and resource controller (binded to model) with the following command
php artisan make:controller TodoController --resource --model=Todo
Just Try this command on your terminal
php artisan make:model Todo -mcr
Below the output and your Model, Controller with Resource and Migration file will create...
Model created successfully. Created Migration: 2019_12_25_105305_create_todos_table Controller created successfully.