From dc871f36d4af2d7a313c41b3482fff138e324cf6 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 16 Nov 2025 17:00:58 +0500 Subject: [PATCH] wip --- .../Repositories/OnlinePaymentRepository.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index 97d754f..f993269 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -154,10 +154,6 @@ class OnlinePaymentRepository { $this->response = $this->provider->sendRequest(); - info([ - 'body' => $this->response->body(), - ]); - $this->failed = $this->response->failed(); $this->successful = $this->response->successful(); @@ -172,6 +168,10 @@ class OnlinePaymentRepository $this->createHistory(); } + info([ + 'response' => $this->response, + ]); + return $this; }