Payment History

{{ $provider->name }} - Total Paid: ${{ number_format($totalPaid / 100, 2) }}

Payment Batches

@forelse($batches as $batch) @empty @endforelse
Batch # Amount Currency Claims Method Reference Status Paid Date
{{ $batch->batch_number }} ${{ number_format($batch->total_amount_cents / 100, 2) }} {{ $batch->currency ?? 'USD' }} {{ $batch->claim_count }} {{ strtoupper($batch->payment_method ?? 'N/A') }} {{ $batch->payment_reference ?? 'N/A' }} {{ ucfirst($batch->status) }} {{ $batch->paid_at ? $batch->paid_at->format('d M Y') : 'N/A' }}
No payment batches found.
@if($batches->hasPages())
{{ $batches->links() }}
@endif

Individual Paid Claims

@forelse($paidClaims as $claim) @empty @endforelse
Claim # Member Type Billed Awarded Reference Method Paid Date
{{ $claim->claim_number }} {{ $claim->member->first_name ?? '' }} {{ $claim->member->last_name ?? '' }} {{ ucfirst($claim->claim_type) }} ${{ number_format($claim->total_billed_cents / 100, 2) }} ${{ number_format(($claim->total_awarded_cents ?? 0) / 100, 2) }} {{ $claim->payment_reference ?? 'N/A' }} {{ strtoupper($claim->payment_method ?? 'N/A') }} {{ $claim->paid_at ? $claim->paid_at->format('d M Y') : 'N/A' }}
No paid claims found.
@if($paidClaims->hasPages())
{{ $paidClaims->links() }}
@endif