rename models and associates, isolate botanic with shop
This commit is contained in:
12
routes/Shop/Admin/Articles.php
Normal file
12
routes/Shop/Admin/Articles.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('Articles')->name('Articles.')->group(function () {
|
||||
Route::get('', 'ArticleController@index')->name('index');
|
||||
Route::get('create', 'ArticleController@create')->name('create');
|
||||
Route::delete('destroy', 'ArticleController@destroy')->name('destroy');
|
||||
Route::post('update', 'ArticleController@update')->name('update');
|
||||
Route::post('store', 'ArticleController@store')->name('store');
|
||||
Route::get('edit/{id}', 'ArticleController@edit')->name('edit');
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user