We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b6a1152 + 05235ee commit 982e769Copy full SHA for 982e769
app/Exceptions/Handler.php
@@ -3,6 +3,7 @@
3
namespace App\Exceptions;
4
5
use Exception;
6
+use Illuminate\Session\TokenMismatchException;
7
use Illuminate\Validation\ValidationException;
8
use Illuminate\Auth\Access\AuthorizationException;
9
use Illuminate\Database\Eloquent\ModelNotFoundException;
@@ -20,6 +21,7 @@ class Handler extends ExceptionHandler
20
21
AuthorizationException::class,
22
HttpException::class,
23
ModelNotFoundException::class,
24
+ TokenMismatchException::class,
25
ValidationException::class,
26
];
27
0 commit comments