Paid By
{{ $payment->customer->name }}
@if($payment->customer->email){{ $payment->customer->email }}
@endif
@if($payment->customer->phone){{ $payment->customer->phone }}@endif
Payment Summary
Amount Paid
{{ $payment->currency ?? 'USD' }} {{ number_format($payment->amount ?? 0, 2) }}
@if($payment->transaction_id)
Transaction ID
{{ $payment->transaction_id }}
@endif
@if($payment->reference)
Reference
{{ $payment->reference }}
@endif
Total Received
{{ $payment->currency ?? 'USD' }} {{ number_format($payment->amount ?? 0, 2) }}