Laravel machen Modell mit Migration und Controller
php artisan make:model Todo -mcr
9jadev
php artisan make:model Todo -mcr
# If you would like to generate a database migration when you
# generate the model, you may use the --migration or -m option:
php artisan make:model Flight --migration
php artisan make:model Flight -m
#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
php artisan make:model ModelName -mcr
php artisan make:model Todo -mcfr
php artisan make:model yourModelName --migration