@if ($agents->count() > 0)
@foreach ($agents as $agent)
{{ $agent->code }}
{{ $agent->area ?? 'No area assigned' }} @if ($agent->teamLeader) • TL: {{ $agent->teamLeader->code }} @endif
{{ $agent->is_active ? 'Active' : 'Inactive' }}
{{ $agent->total_shops ?? 0 }}
Shops
{{ $agent->visits_today ?? 0 }}
Visits Today
@endforeach
@if ($agents->hasPages())
{{ $agents->links() }}
@endif @else
👥
No agents found
@endif