Files
opensem/routes/Shop/Admin/Sections.php
Ludovic CANDELLIER 49afb9ca4c Fix case typo
2020-04-15 15:40:57 +02:00

13 lines
477 B
PHP

<?php
Route::prefix('Sections')->name('Sections.')->group(function () {
Route::get('', 'SectionController@index')->name('index');
Route::get('create', 'SectionController@create')->name('create');
Route::delete('destroy', 'SectionController@destroy')->name('destroy');
Route::post('update', 'SectionController@update')->name('update');
Route::post('store', 'SectionController@store')->name('store');
Route::get('edit/{id}', 'SectionController@edit')->name('edit');
});