Artisan tworzy model z migracją
php artisan make:model Model_Name -m
RaFiNhA90
php artisan make:model Model_Name -m
# 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
php artisan make:model Todo -mcr
#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 Flight
php artisan make:model ModelName --migration