Laravel:我如何获得当前路线
Posted
技术标签:
【中文标题】Laravel:我如何获得当前路线【英文标题】:Laravel: How do I get the current route 【发布时间】:2020-08-04 21:43:32 【问题描述】:如何获取用户当前所在的路线?如果用户当前在链接指向的路线上,我需要它来隐藏导航栏链接。
【问题讨论】:
这能回答你的问题吗? Laravel: How to Get Current Route Name? (v5 & v6) 欢迎来到 ***。请在发布新问题之前尝试搜索,这里已经有很多重复了。 【参考方案1】:您可以使用 current、currentRouteName 和 currentRouteAction 方法来访问有关处理传入请求的路由的信息:
$route = Route::current();
$name = Route::currentRouteName();
$action = Route::currentRouteAction();
你也可以查看Link
希望对你有帮助...
【讨论】:
以上是关于Laravel:我如何获得当前路线的主要内容,如果未能解决你的问题,请参考以下文章