Files
opensem/routes/Shop/Products.php
Ludovic CANDELLIER 49afb9ca4c Fix case typo
2020-04-15 15:40:57 +02: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');
});