Transaction Engine
Manage Escrow, verify SHA256 tokens, and release payments for secure car marketplace sales.
| Transaction Ref | Vehicle | Escrow Status | Cost Breakdown | Verification | Action |
|---|---|---|---|---|---|
|
= htmlspecialchars($p['reference_number'] ?: 'LEGACY-'.$p['id']) ?>
= htmlspecialchars($p['transaction_id'] ?: 'N/A') ?>
= date('M d, H:i', strtotime($p['created_at'])) ?>
|
= htmlspecialchars($p['brand']) ?>
= $p['year'] ?>
|
= strtoupper(str_replace('_', ' ', $p['escrow_status'] ?: 'awaiting_verification')) ?>
Status: = ucfirst($p['status']) ?>
|
Base: $= number_format($p['base_price'], 0) ?>
Fee: $= number_format($p['marketplace_fee'], 0) ?>
Total: $= number_format($p['total_amount'] ?: $p['base_price'], 0) ?>
|
= htmlspecialchars($p['buyer_name']) ?>
Bank ID: = htmlspecialchars($p['bank_id'] ?: 'N/A') ?>
Token: = substr($p['verification_token'], 0, 12) ?>...
|
|