This commit is contained in:
2025-09-09 15:34:55 +05:00
parent 014da27f66
commit b3ed503742
2 changed files with 4 additions and 4 deletions

View File

@@ -58,11 +58,11 @@ class SyncWithSystem extends Action
pay_purpose: $sberPaymentOrder->created_at->translatedFormat('F').' '.$sberPaymentOrder->created_at->format('Y')
);
info($systemResponse);
$success = $systemResponse['errCode'] == 0;
return Action::modal('modal-response', [
'title' => 'SYSTEM API',
'html' => "<>",
'html' => $success ? "Success" : "Fail",
'title' => $success ? "Success" : "Fail",
]);
}