| Reference Number |
{{ $advancePayment->reference_number }} |
| Buyer |
{{ $advancePayment->buyer->contact_person }} |
| Order Confirmation |
{{ $advancePayment->orderConfirmation->order_number ?? 'N/A' }} |
| Amount |
${{ number_format($advancePayment->amount, 2) }} |
| Payment Date |
{{ $advancePayment->payment_date->format('M d, Y') }} |
| Payment Method |
{{ $advancePayment->payment_method }} |
| Transaction ID |
{{ $advancePayment->transaction_id ?? 'N/A' }} |
| Status |
{{ ucfirst($advancePayment->status) }}
|
| Allocated Amount |
${{ number_format($advancePayment->allocated_amount, 2) }} |
| Remaining Amount |
${{ number_format($advancePayment->remaining_amount, 2) }} |
| Created By |
{{ $advancePayment->creator->name }} |
| Created At |
{{ $advancePayment->created_at->format('M d, Y H:i') }} |
@if($advancePayment->remarks)
{{ $advancePayment->remarks }}
@endif