7 lines
141 B
PHP
7 lines
141 B
PHP
<?php
|
|
|
|
Route::prefix('Offres')->name('Offers.')->group(function () {
|
|
Route::get('show/{id}', 'OfferController@show')->name('show');
|
|
});
|
|
|