在 laravel 中,我可以使用以下内容在我的刀片模板中获取路线的当前名称:
{{ Route::currentRouteName() }}
我怎样才能在流明中做同样的事情?
我用以下方法解决了这个问题:
list($found, $routeInfo, $params) = app('request')->route() ?: [false, [], []];
$routeName = isset($routeInfo['as']) ? $routeInfo['as'] : null;
例子:
<?php
$method = Request::getMethod();
$pathInfo = Request::getPathInfo();
$currentRoute = $app->getRoutes()[$method.$pathInfo];
echo $currentRoute['action']['as'];
?>
测试版本 5.0