From 3b5b7f10c478dd5be5b3caccfa1c635e3c8bb16b Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 16 Nov 2025 17:13:18 +0500 Subject: [PATCH] wip --- .../OnlinePayment/Repositories/OnlinePaymentRepository.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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__, ], ]);