From da5bb6e99bf0685326f7c27d222e8faf53d025e4 Mon Sep 17 00:00:00 2001 From: Nurmuhammet Allanov Date: Sun, 16 Nov 2025 17:24:55 +0500 Subject: [PATCH] wip --- .../OnlinePayment/Repositories/OnlinePaymentRepository.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php index b32388e..82078eb 100644 --- a/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php +++ b/app/Modules/OnlinePayment/Repositories/OnlinePaymentRepository.php @@ -261,6 +261,11 @@ class OnlinePaymentRepository $this->provider->setPassword($bankBranch->billing_password); $response = $this->provider->checkPayment($orderId); + info([ + 'response' => $response, + 'body' => $response->body(), + ]); + if ($response['errorCode'] == '99') { return $this->paymentFailed('(REQUEST FAILURE)'); }