9 lines
280 B
PHP
9 lines
280 B
PHP
<?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');
|
|
});
|
|
|