📜  laravel 模型在哪里 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:01.650000             🧑  作者: Mango

代码示例3
php artisan make:model Flight -mcr
  #it will make model with name of Flight
  #it will also create conctroller file with FlightController name 
  #all function will present in this Controller (index, create, store, show, edit, update, destroy)