Laravel 5 get route prefix in controller method
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am working in Laravel 5.0 app. I have created route group like below, Route::group(['prefix' => 'expert'], function () { Route::get('dashboard', [ 'as' => 'expert.dashboard', 'uses' => 'DashboardController@index' ]); ]); I want to get the current route prefix in DashboardController 's index method. I dont know how to do that. I could not find this in documentation. Please help me. 回答1: You can do this two way Type-hinting Request in method public function index(\Illuminate\Http\Request $request){ dd($request->route()->getPrefix()); } or