change homepages to contents, add new methods to deliveries and sale_channels by customer

This commit is contained in:
ludo
2023-12-09 23:55:50 +01:00
parent 7561a8e8ba
commit 71ecb13af0
28 changed files with 185 additions and 153 deletions

View File

@@ -0,0 +1,10 @@
<?php
Route::prefix('Contents')->name('Contents.')->group(function () {
Route::get('', 'ContentController@index')->name('index');
Route::get('create', 'ContentController@create')->name('create');
Route::delete('destroy/{id?}', 'ContentController@destroy')->name('destroy');
Route::post('update', 'ContentController@update')->name('update');
Route::post('store', 'ContentController@store')->name('store');
Route::get('edit/{id}', 'ContentController@edit')->name('edit');
});