Procházet zdrojové kódy

Merge branch 'dev' into pre

LuluFJ.Ho před 2 roky
rodič
revize
648a76db33
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. 2
    1
      app/Exceptions/Handler.php

+ 2
- 1
app/Exceptions/Handler.php Zobrazit soubor

@@ -56,7 +56,8 @@ class Handler extends ExceptionHandler
56 56
     }
57 57
 
58 58
     public function handleApiException(Throwable $exception)
59
-    {
59
+    { 
60
+        dd($exception);
60 61
         // Route Not Found 404
61 62
         if ($exception instanceof RouteNotFoundException) {
62 63
             return $this->apiExceptionResponse($exception, Response::HTTP_NOT_FOUND, config('response-message.router_failed'));