diff --git a/routes/Shop/Offers.php b/routes/Shop/Offers.php index 764529f7..adbc64b6 100644 --- a/routes/Shop/Offers.php +++ b/routes/Shop/Offers.php @@ -1,5 +1,8 @@ name('Offers.')->group(function () { - Route::get('show/{id}', 'OfferController@show')->name('show'); + // Public offer pages are not exposed; keep the route returning 404 to avoid leaking data. + Route::get('show/{id}', function () { + abort(404); + })->name('show'); });