{{-- =====================================================
STATUS SUMMARY
====================================================== --}}
{{-- PERSONAL --}}
Payment of ₹{{ number_format((float)$cardUnlockPayment->amount, 2) }} completed
@if($cardUnlockPayment->paid_at)
on {{ $cardUnlockPayment->paid_at->format('d M Y, h:i A') }}
@endif
@else
@endif
@elseif(
$kyc->status === 'rejected'
)
✕ KYC Rejected
@if(
$kyc->rejection_reason
)
Reason:
{{ $kyc->rejection_reason }}
@endif
@endif
🔒
Privacy protected:
Aadhaar and PAN numbers are masked
in the admin overview. Only the last
four characters are displayed.
@else
KYC details have not been submitted yet.
@endif
{{-- =================================================
PAYMENT HISTORY
================================================== --}}
Payment History
💰
@forelse(
$payments as $payment
)
{{ $payment->order_id
?? $payment->payment_id
?? 'Payment #' . $payment->id
}}
{{ $payment->created_at
? $payment->created_at->format(
'd M Y, h:i A'
)
: 'Date unavailable'
}}