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