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.
You can do this two way
Type-hinting
Request
in methodor
I hope this helps.
Try this