diff --git a/routes/web.php b/routes/web.php index 58003ae9..bc208124 100644 --- a/routes/web.php +++ b/routes/web.php @@ -6169,7 +6169,11 @@ Route::get('/paolibri', function () { }); Route::get('/mylinkspao', function (Illuminate\Http\Request $request) { - $id = $request->query('id'); + try { + $id = $request->query('id'); + } catch (\Exception $e) { + $id = ''; + } return view('mylinkspao', ['id' => $id]); });