Laravel machen Modell mit Migration und Controller
php artisan make:model Todo -mcr
9jadev
php artisan make:model Todo -mcr
php artisan make:model ModelName -mcr
You can do it with the following command:
php artisan make:model post -mcr
Brief :
-m, to create migration
-c to create controller
-r to specify the controller has resource
php artisan make:controller PhotoController --resource --model=Photo
php artisan make:model Todo -a
php artisan make:model Products -mcr
-m, --migration Create a new migration file for the model.
-c, --controller Create a new controller for the model.
-r, --resource Indicates if the generated controller should be a resource controller
newer versions of laravel > 5.6
php artisan make:model Products -a
-a, --all Generate a migration, factory, and resource controller for the model