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.