@@ -57,6 +57,7 @@ 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'));