| Reference |
Buyer |
Order |
Amount |
Payment Date |
Method |
Status |
Remaining |
Actions |
@foreach($advancePayments as $payment)
| {{ $payment->reference_number }} |
{{ $payment->buyer->contact_person }} |
{{ $payment->orderConfirmation->order_number ?? 'N/A' }} |
${{ number_format($payment->amount, 2) }} |
{{ $payment->payment_date->format('M d, Y') }} |
{{ $payment->payment_method }}
|
{{ ucfirst($payment->status) }}
|
${{ number_format($payment->remaining_amount, 2) }}
|
@if($payment->canAllocate())
@endif
|
@endforeach
{{ $advancePayments->links() }}