Parcourir la source

Merge branch 'dev' into pre

LuluFJ.Ho il y a 3 ans
Parent
révision
0fdc38a8bd
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      app/Exceptions/Handler.php

+ 1
- 1
app/Exceptions/Handler.php Voir le fichier

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