I can create a model and resource controller (binded to model) with the following command
php artisan make:controller TodoController --resource --model=Todo
You can use -m -c -r to make migration, model and controller.
php artisan make:model Post -m -c -r