@if ($teamLeaders->count() > 0)
@foreach ($teamLeaders as $tl)
{{ $tl->code }}
@if ($tl->region) 📍 {{ $tl->region }} @if ($tl->territory) • {{ $tl->territory }} @endif @else No region assigned @endif
{{ $tl->is_active ? 'Active' : 'Inactive' }}
{{ $tl->agents_count ?? 0 }}
Agents
{{ $tl->shops_count ?? 0 }}
Shops
{{ number_format($tl->total_sales ?? 0, 0) }}
Sales
@endforeach
{{ $teamLeaders->links() }}
@else
👨‍💼
No team leaders found
@endif