{{ $client->client->agency->name }}

{{ $client->client->agency->address }}

Tel: {{ $client->client->agency->contact_phone }}

@if ($hasBillingRecords)

Billing Code: {{ $hasBillingRecords->id }}

@endif

📊 Variance Report Reconciliation

@if (count($adjustment) > 0)
{{-- New header --}} @foreach ($adjustment as $report) @endforeach
Batch ID Employee Action Remarks Underpayment Overpayment Created At Delete
{{ $report->batch_id }} {{ $report->employee->first_name }} {{ substr($report->employee->middle_name, 0, 1) }}. {{ $report->employee->last_name }} {{ $report->action }} {{ $report->remarks }} {{ number_format($report->underpayment ?? 0, 2) }} {{ number_format($report->overpayment ?? 0, 2) }} {{ \Carbon\Carbon::parse($report->created_at)->format('M d, Y ') }}
@if ($report->status != 1) @endif
@else
No variance reports found.
@endif
@if ($hasBillingRecords) @if ($hasBillingRecords->note != null)

Note: {{ $hasBillingRecords->note }}

@endif

Prepared by: {{ $hasBillingRecords->user->name }}

@endif
Export PDF Report