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

8 lines
203 B
PHP

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