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