Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ChadTaljaardt/022165dd6800ba398dc3f33ed1745fe9 to your computer and use it in GitHub Desktop.
Save ChadTaljaardt/022165dd6800ba398dc3f33ed1745fe9 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