Back to Payments
Medical Aid Society of Zimbabwe

Remittance Advice

Batch: {{ $batch->batch_number }}

Date: {{ $batch->paid_at?->format('d F Y') ?? now()->format('d F Y') }}

Provider Details

{{ $batch->provider->name ?? 'N/A' }}

Practice #: {{ $batch->provider->practice_number ?? 'N/A' }}

{{ ucfirst(str_replace('_', ' ', $batch->provider->provider_type ?? '')) }}

Payment Details

Reference: {{ $batch->payment_reference }}

Method: {{ strtoupper($batch->payment_method) }}

Currency: {{ $batch->currency }}

Claims Count: {{ $batch->claim_count }}

@php $totalBilled = 0; $totalAwarded = 0; @endphp @foreach($claims as $claim) @php $totalBilled += $claim->total_billed_cents; $totalAwarded += $claim->total_awarded_cents; @endphp @endforeach
Claim # Member Service Date Type Billed Awarded
{{ $claim->claim_number }} {{ $claim->member->full_name ?? 'N/A' }} {{ $claim->service_date->format('d M Y') }} {{ ucfirst($claim->claim_type) }} ${{ number_format($claim->total_billed_cents / 100, 2) }} ${{ number_format($claim->total_awarded_cents / 100, 2) }}
Total ${{ number_format($totalBilled / 100, 2) }} ${{ number_format($totalAwarded / 100, 2) }}