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