Browse Source

20221013 新增存取utm參數

LuluFJ.Ho 2 years ago
parent
commit
d1ac01fdd5
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      app/Exceptions/Handler.php

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

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