在laravel中,我可以使用以下内容在我的刀片模板中获取路径的当前名称:
{{ Route::currentRouteName() }}
我怎么能在流明做同样的事?
答案 0 :(得分:0)
示例:
<?php
$method = Request::getMethod();
$pathInfo = Request::getPathInfo();
$currentRoute = $app->getRoutes()[$method.$pathInfo];
echo $currentRoute['action']['as'];
?>
答案 1 :(得分:0)
我用以下方法解决了这个问题:
list($found, $routeInfo, $params) = app('request')->route() ?: [false, [], []];
$routeName = isset($routeInfo['as']) ? $routeInfo['as'] : null;
答案 2 :(得分:0)
我就是这样做的
$request->route()[1]['uses'];