Fix: Correct Display of last 4 digits of credit card

This commit is contained in:
2026-09-15 21:22:45 +03:00
parent a5f3008ce2
commit e4e008167a
2 changed files with 38 additions and 0 deletions
@@ -49,6 +49,8 @@ class TransactionRecorder
'reference' => $result->reference,
'status' => $result->status->name,
'notes' => $result->failureReason,
'card_type' => $result->meta['card_type'] ?? null,
'last_four' => $result->meta['last_four'] ?? null,
'meta' => $result->meta,
]);
}