在Laravel v4中,我可以使用…
Route::currentRouteName()
我如何在Laravel v5和Laravel v6中做到这一点?
在Laravel v4中,我可以使用…
Route::currentRouteName()
我如何在Laravel v5和Laravel v6中做到这一点?
当前回答
在控制器中访问当前路由名
Ie - http://localhost/your_project_name/edit
$request->segment(1); // edit
(或)
$request->url(); // http://localhost/your_project_name/edit
其他回答
这是我使用的,我不知道为什么没有人提到它,因为它对我来说非常好。
Route::getCurrentRoute()->uri ; // this returns a string like '/home'
所以我在master.blade.php文件中使用它:
...
@if ( Route::getCurrentRoute()->uri =='/dashbord' )
@include('navbar')
@endif
...
没有人有答案,如果路由名称或url id需要在视图直接 对于视图direct上的路由名
$routeName = Request::route()->getName();
对于id from url on view
$url_id = Request::segment(2);
解决方案:
$routeArray = app('request')->route()->getAction();
$controllerAction = class_basename($routeArray['controller']);
list($controller, $route) = explode('@', $controllerAction);
echo $route;
使用Laravel 5.1,您可以使用
\Request::route()->getName()
现在在Laravel 5.3中,我看到可以做出类似的尝试:
$route = Route::current();
$name = Route::currentRouteName();
$action = Route::currentRouteAction();
https://laravel.com/docs/5.3/routing#accessing-the-current-route