Click ERP - Client Master Report

Generated on: {{ date('d M Y, h:i A') }} • Total Records: {{ count($clients) }}

@forelse($clients as $index => $client) @empty @endforelse
# Client Name Contact Person Email Pay Mode Country Status
{{ $index + 1 }} {{ $client->name }} {{ $client->contact_person ?? 'N/A' }} {{ $client->email ?? 'N/A' }} {{ $client->pay_mode ?? 'N/A' }} {{ $client->country ?? 'N/A' }} @php $isActive = $client->status === 'Live' || $client->status === 'active'; @endphp {{ $client->status ?? 'N/A' }}
No client records found matching the criteria.