次のように laravel/lumen でルート グループを宣言しました。
$app->group(['middleware' => 'auth'], function () use ($app) {
$app->get('/details', 'UserController@details');
});
ルートファイル web.php のすべての内容は次のようになります。
/*
|--------------------------------------------------------------------------
| Application Routes
|--------------------------------------------------------------------------
|
| Here is where you can register all of the routes for an application.
| It is a breeze. Simply tell Lumen the URIs it should respond to
| and give it the Closure to call when that URI is requested.
|
*/
$app = app();
$router->get('/', function () use ($router) {
return $router->app->version();
});
$app->group(['middleware' => 'auth'], function () use ($app) {
$app->get('/details', 'UserController@details');
});
http://THE_URL/への呼び出しについて
エラーが発生するCall to undefined method Laravel\Lumen\Application::group()
ミドルウェアを使用してルート グループを追加するにはどうすればよいですか?