我是laravel的新手。
我已复制命令从书中创建控制器,我正在尝试运行该命令:
php artisan Usercontroller:make users
我收到错误:
[InvalidArgumentException]
There are no commands defined in the "Usercontroller" namespace.
Did you mean this?
controller
当前工作目录是项目目录:
C:\wamp\www\laravel>
答案 0 :(得分:2)
命令应该是
php artisan controller:make users
答案 1 :(得分:2)
命令中有拼写错误,你应该使用
php artisan controller:make users
希望这有帮助。