Fix case typo
This commit is contained in:
8
routes/Shop/Products.php
Normal file
8
routes/Shop/Products.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
Route::prefix('Products')->name('Products.')->group(function () {
|
||||
Route::get('', 'ProductController@index')->name('index');
|
||||
Route::get('bySection/{id}', 'ProductController@bySection')->name('index');
|
||||
Route::get('show/{id}', 'ProductController@show')->name('show');
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user