This commit is contained in:
2025-11-16 17:24:55 +05:00
parent 680d5d4130
commit da5bb6e99b

View File

@@ -261,6 +261,11 @@ class OnlinePaymentRepository
$this->provider->setPassword($bankBranch->billing_password); $this->provider->setPassword($bankBranch->billing_password);
$response = $this->provider->checkPayment($orderId); $response = $this->provider->checkPayment($orderId);
info([
'response' => $response,
'body' => $response->body(),
]);
if ($response['errorCode'] == '99') { if ($response['errorCode'] == '99') {
return $this->paymentFailed('(REQUEST FAILURE)'); return $this->paymentFailed('(REQUEST FAILURE)');
} }