9 lines
252 B
PHP
9 lines
252 B
PHP
<?php
|
|
|
|
Route::prefix('Offres')->name('Offers.')->group(function () {
|
|
// Public offer pages are not exposed; keep the route returning 404 to avoid leaking data.
|
|
Route::get('show/{id}', function () {
|
|
abort(404);
|
|
})->name('show');
|
|
});
|