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