laravel 获取当前url的别名方法
如下所示: Route::get('/xiongtest', [ 'as' => 'xiong.test', 'uses' => 'XiongTestController@index' ]); 以上路由为例 在模版中可以使用route(‘xiong.test’)来获取该路由的真实地址。 在XiongTestController@index中,可以使用以下方法获取路由别名 public function index(Request $request) $routeAction = $request->route()->getAction(); print_r($routeActi
用户评论