change homepages to contents, add new methods to deliveries and sale_channels by customer
This commit is contained in:
10
routes/Admin/Shop/Contents.php
Normal file
10
routes/Admin/Shop/Contents.php
Normal 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');
|
||||
});
|
||||
Reference in New Issue
Block a user