ソースを参照

20220831 fix insert data functon

LuluFJ.Ho 2 年 前
コミット
3077e8c913
共有1 個のファイルを変更した1 個の追加0 個の削除を含む
  1. 1
    0
      app/Exceptions/Handler.php

+ 1
- 0
app/Exceptions/Handler.php ファイルの表示

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