From 1a1f7af10909f225458f2555b37670c6638f3b59 Mon Sep 17 00:00:00 2001 From: khanh97dev Date: Thu, 9 Nov 2023 16:43:36 +0700 Subject: [PATCH] fix 500 --- app/Exceptions/Handler.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index c82b485..244e0c0 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -5,6 +5,7 @@ namespace App\Exceptions; use Exception; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; use Illuminate\Http\JsonResponse; +use Illuminate\Http\Response; use Throwable; class Handler extends ExceptionHandler