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'); });