Files
opensem/routes/Shop/Articles.php
Ludovic CANDELLIER 39c80ce6d1 add shipping rules
2023-07-16 14:45:42 +02:00

7 lines
208 B
PHP

<?php
Route::prefix('Articles')->name('Articles.')->group(function () {
Route::get('', 'ArticleController@index')->name('index');
Route::get('show/{id}', 'ArticleController@show')->name('show');
});