Files
opensem/routes/shop/Products.php
Ludovic CANDELLIER 36267139a1 [WIP] Setup of skeleton
2020-03-25 00:08:27 +01:00

9 lines
280 B
PHP

<?php
Route::prefix('Products')->name('Products.')->group(function () {
Route::get('', 'ProductController@index')->name('index');
Route::get('bySection/{id}', 'ProductController@bySection')->name('index');
Route::get('show/{id}', 'ProductController@show')->name('show');
});