📜  --plain 命令不存在 - Shell-Bash 代码示例

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

代码示例1
Short

Now in Laravel 5.2 make:controller command creates plain controller, if you want to make resource
controller you need to add --resource

php artisan make:controller AdminController --resource

Before, Laravel 5.2 --plain was used to make a simple controller without builtin routes ands methods.