'admin'], function () { Route::resource('/show/show', 'Lavalite\Show\Http\Controllers\ShowAdminController'); }); // User routes for show Route::group(['prefix' => 'user'], function () { Route::resource('/show/show', 'Lavalite\Show\Http\Controllers\ShowUserController'); }); // Public routes for show Route::get('show/show', 'Lavalite\Show\Http\Controllers\ShowPublicController@index'); Route::get('show/show/{slug?}', 'Lavalite\Show\Http\Controllers\ShowPublicController@show'); Route::group(['prefix' => 'admin'], function () { Route::resource('/show/presenter', 'Lavalite\Show\Http\Controllers\PresenterAdminController'); }); // User routes for presenter Route::group(['prefix' => 'user'], function () { Route::resource('/show/presenter', 'Lavalite\Show\Http\Controllers\PresenterUserController'); }); // Public routes for presenter Route::get('show/presenter', 'Lavalite\Show\Http\Controllers\PresenterPublicController@index'); Route::get('show/presenter/{slug?}', 'Lavalite\Show\Http\Controllers\PresenterPublicController@show');