Sfoglia il codice sorgente

20220831 fix insert data functon

LuluFJ.Ho 2 anni fa
parent
commit
3b45a81ef4
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1
    0
      app/Exceptions/Handler.php

+ 1
- 0
app/Exceptions/Handler.php Vedi File

@@ -57,6 +57,7 @@ class Handler extends ExceptionHandler
57 57
 
58 58
     public function handleApiException(Throwable $exception)
59 59
     { 
60
+        dd(123);
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'));