Amount Paid
${{ number_format($payment->amount, 2) }}
Payment Information
|
Payment Reference
{{ $payment->payment_reference }}
|
Payment Date
{{ $payment->created_at->format('M j, Y g:i A') }}
|
|
|
Payment Method
{{ ucfirst(str_replace('_', ' ', $payment->payment_method)) }}
|
Status
{{ ucfirst($payment->status) }}
|
|
|
Pesepay Reference
{{ $payment->pesepay_reference }}
|
@if($payment->processed_at)
Processed Date
{{ $payment->processed_at->format('M j, Y g:i A') }}
|
@else
@endif |
Customer Information
|
Customer Name
{{ $customer->name }}
|
Email Address
{{ $customer->email }}
|
|
|
Phone Number
{{ $customer->phone }}
|
@else
@endif |
Customer ID
#{{ $customer->id }}
|
Related Records
|
Invoice Number
{{ $invoice->invoice_number }}
|
Invoice Amount
${{ number_format($invoice->total_amount, 2) }}
|
|
Order Number
{{ $salesOrder->order_number }}
|
|
|
Quotation Reference
{{ $quotation->reference }}
|
Additional Notes
{{ $payment->notes }}