Files
opensem/routes/Shop/Articles.php
2020-04-21 00:09:32 +02:00

9 lines
280 B
PHP

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