From a6d486ea8abce6714e6ba14002745ce4dce68260 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 14 Aug 2019 22:18:48 -0700 Subject: [PATCH] Fix invalidJSON exception --- app/Exceptions/Handler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index f6449b25d..a81f1a464 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -2,12 +2,14 @@ namespace App\Exceptions; -use App\Helpers\Helper; use Exception; use Illuminate\Auth\AuthenticationException; use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; +use App\Helpers\Helper; +use Illuminate\Validation\ValidationException; use Log; + class Handler extends ExceptionHandler { /**