set_route_guard('web').'/country'], function () { Route::resource('country', 'CountryResourceController'); }); // Public routes for country Route::get('country/popular/{period?}', 'CountryPublicController@popular'); Route::get('countries/', 'CountryPublicController@index'); Route::get('countries/{slug?}', 'CountryPublicController@show');