- 你可以使用 Route Facade 上的 current、currentRouteName 和 currentRouteAction 方法来访问处理传入请求的路由的信息:
$route = Route::current();
$name = Route::currentRouteName();
$action = Route::currentRouteAction();
在模板中使用
<?php echo
$route = Route::current();
$name = Route::currentRouteName();
$action = Route::currentRouteAction();
在模板中使用
<?php echo
本文标题:62. 路由 访问当前路由
本文链接:https://www.haomeiwen.com/subject/ivcdyxtx.html
网友评论