₦{{ number_format($totalPoliciesSales, 2) }}
Policies Sales
{{ number_format($totalRefers) }}
Total Refers
₦{{ number_format($totalAmountPaid, 2) }}
Total Amount Paid
₦{{ number_format($totalPoliciesSales * 1.2, 2) }}
Policies Sales
{{ number_format($totalRefers) }}
Total Refers
₦{{ number_format($totalAmountPaid * 1.2, 2) }}
Total Amount to be Paid
Transaction History
@if(count($transactions) > 0)
@foreach($transactions as $transaction)
For {{ $transaction->customer_name ?? 'Customer' }}
✕
₦{{ number_format($transaction->amount, 2) }} NGN
Policy No: {{ $transaction->policy_number ?? 'N/A' }}
{{ ucfirst($transaction->status) }}
{{ $transaction->customer_name ?? 'N/A' }}
{{ $transaction->policy_type ?? 'N/A' }}
@endforeach
@else
@endif
@if(is_object($transactions) && method_exists($transactions, 'links'))
@endif
@if(count($documents) > 0)
@foreach($documents as $document)
📄
{{ $document->name ?? 'Document' }}
{{ $document->size ?? 'N/A' }}
Download
@endforeach
@else
📄
Agent Licence
Not uploaded
📄
Identification ID
Not uploaded
@endif