当我在 Lumen 框架中的组内定义路由时,它可以很好地使用直接闭包,但不能使用控制器名称;我总是得到一个未找到的异常。
//Working
$app->group(['prefix' => 'admin'], function () use ($app) {
$app->get('users', function () {
//...
});
});
//Get 'Class ExampleController does not exist'
$app->group(['prefix' => 'admin'], function () use ($app) {
$app->get('users', ['uses' => 'ExampleController@indexAction']);
});
提前致谢。