Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
laravel では、以下を使用して、ブレード テンプレートのルートの現在の名前を取得できます。
{{ Route::currentRouteName() }}
Lumen で同じことを行うにはどうすればよいですか?
例:
<?php $method = Request::getMethod(); $pathInfo = Request::getPathInfo(); $currentRoute = $app->getRoutes()[$method.$pathInfo]; echo $currentRoute['action']['as']; ?>
テスト済みのバージョン 5.0