Laravel 5.4 create model, controller and migration in single artisan command

后端 未结 14 979
一整个雨季
一整个雨季 2020-12-22 14:35

I can create a model and resource controller (binded to model) with the following command

php artisan make:controller TodoController --resource --model=Todo
         


        
14条回答
  •  心在旅途
    2020-12-22 15:38

    How I was doing it until now:

    php artisan make:model Customer
    php artisan make:controller CustomersController --resource
    

    Apparently, there’s a quicker way:

    php artisan make:controller CustomersController --model=Customer
    

提交回复
热议问题