8 lines
203 B
PHP
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');
|
|
});
|
|
|