Ver código fonte

20221013 新增存取utm參數

LuluFJ.Ho 2 anos atrás
pai
commit
3f41bf9b29
1 arquivos alterados com 1 adições e 0 exclusões
  1. 1
    0
      app/Exceptions/Handler.php

+ 1
- 0
app/Exceptions/Handler.php Ver arquivo

@@ -100,6 +100,7 @@ class Handler extends ExceptionHandler
100 100
             foreach ($exception->errors() as $col => $errorMsg) {
101 101
                 $validationData['errors']['validation'][$col] = $errorMsg[0];
102 102
             }
103
+            dump($exception);
103 104
             return $this->apiExceptionResponse($exception, Response::HTTP_UNPROCESSABLE_ENTITY, config('response-message.validation_failed'), $validationData);
104 105
         }
105 106