在Laravel 4中如何通过 Web 界面调用 Artisan 命令?
我试过以下
$command = "controller:make";
$parameters = array('name' => 'FooController');
Artisan::call($command,$parameters);
但是我收到此错误消息
InvalidArgumentException: There are no commands defined in the "controller" namespace.
任何想法?