Skip to content

Instantly share code, notes, and snippets.

@ChadTaljaardt
Created April 26, 2016 21:58
Show Gist options
  • Save ChadTaljaardt/44e02e107bf94f47862a34cfa503f080 to your computer and use it in GitHub Desktop.
Save ChadTaljaardt/44e02e107bf94f47862a34cfa503f080 to your computer and use it in GitHub Desktop.
Route::group(['prefix' => 'products'], function() {
Route::get('/', 'FrontendController@getProductsPage')->name('frontend.products.view');
Route::get('{slug}', 'FrontendController@getProductDetails')->name('frontend.products.details');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment