Преглед на файлове

20220831 fix insert data functon

LuluFJ.Ho преди 2 години
родител
ревизия
b6ade85572
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1
    1
      app/Exceptions/Handler.php

+ 1
- 1
app/Exceptions/Handler.php Целия файл

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