diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index 6e06fe0..4b83a3d 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -156,6 +156,10 @@ class OnlinePaymentRepository { $this->response = $this->provider->sendRequest(); + info([ + 'response' => $this->response, + ]); + $this->failed = $this->response->failed(); $this->successful = $this->response->successful(); @@ -180,7 +184,6 @@ class OnlinePaymentRepository 'response' => [ 'title' => 'REGISTER', 'error' => $this->response->body(), - 'response_object' => $this->response, 'file_line' => __FILE__.':'.__LINE__, ], ]);