Answers for "laravel add controller and model migration"

PHP
2

laravel create model migration and controller

php artisan make:model ModelName -mcr
Posted by: Guest on June-07-2021
0

php artisan make controller model and migration

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
Posted by: Guest on January-17-2022

Code answers related to "laravel add controller and model migration"

Browse Popular Code Answers by Language