From 0aa90b945395180f7048a218b8f0b496457ab2d1 Mon Sep 17 00:00:00 2001 From: James Cole Date: Wed, 24 Sep 2025 19:51:39 +0200 Subject: [PATCH] Fix #10960 --- app/Exceptions/GracefulNotFoundHandler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/GracefulNotFoundHandler.php b/app/Exceptions/GracefulNotFoundHandler.php index fe0ca9c896..b2feef6ea6 100644 --- a/app/Exceptions/GracefulNotFoundHandler.php +++ b/app/Exceptions/GracefulNotFoundHandler.php @@ -86,6 +86,7 @@ class GracefulNotFoundHandler extends ExceptionHandler return $this->handleAttachment($request, $e); case 'bills.show': + case 'subscriptions.show': $request->session()->reflash(); return redirect(route('bills.index'));