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