set_route_guard('web').'/category'], function () { Route::resource('product_category', 'ProductCategoryResourceController'); }); // Public routes for product_category Route::get('product_category/popular/{period?}', 'ProductCategoryPublicController@popular'); Route::get('categories/', 'ProductCategoryPublicController@index'); Route::get('categories/{slug?}', 'ProductCategoryPublicController@show');