{{-- Header --}}

{{ __('Team Performance') }}

{{ __('Agent leaderboard and productivity metrics') }}

{{-- Date range selector --}}
@foreach(['today' => __('Today'), '7d' => __('7 days'), '30d' => __('30 days'), '90d' => __('90 days')] as $key => $label) @endforeach
{{-- Agent Leaderboard Table --}}

{{ __('Agent Leaderboard') }}

@forelse($agents as $index => $agent) @empty @endforelse
#
{{ $index + 1 }}
@php $colors = ['bg-info/100', 'bg-success/100', 'bg-brand/100', 'bg-pink-500', 'bg-warning/100', 'bg-rose-500', 'bg-violet-500', 'bg-emerald-500']; $bgColor = $colors[$index % count($colors)]; @endphp
{{ $agent['initials'] }}
{{ $agent['name'] }}

{{ $agent['role'] }}

{{ number_format($agent['conversations']) }}
{{ __('No team members found.') }}