I can create a model and resource controller (binded to model) with the following command
php artisan make:controller TodoController --resource --model=Todo
You don't need to add --resource flag just type the following and laravel will create the whole desired resources
php artisan make:controller TodoController --model=todo