Dashboard Overview • {{ now()->format('F j, Y') }}
LIVE| Rank | Service Name | Total Requests | Percentage |
|---|---|---|---|
|
{{ $index + 1 }}
|
@if ($service->service) {{ $service->service->getLocalized('name') }} @else Unknown Service (ID: {{ $service->service_id }}) @endif | {{ $service->total }} | @if ($applicationcount > 0) @else 0% @endif |
| Rank | Officer Name | Total Applications | Processed | Pending | Efficiency Rate | Pending Rate | Performance Score | Prize Status |
|---|---|---|---|---|---|---|---|---|
| @if ($officer->rank == 1) 🥇 {{ $officer->rank }} @elseif($officer->rank == 2) 🥈 {{ $officer->rank }} @elseif($officer->rank == 3) 🥉 {{ $officer->rank }} @else {{ $officer->rank }} @endif | {{ $officer->name }} | {{ $officer->total_applications }} | {{ $officer->processed_applications }} | {{ $officer->pending_applications }} |
|
|
{{ $officer->performance_score }}% | @if ($officer->rank == 1 && $officer->performance_score > 0) 🏆 Gold Prize @elseif($officer->rank == 2 && $officer->performance_score > 0) 🥈 Silver Prize @elseif($officer->rank == 3 && $officer->performance_score > 0) 🥉 Bronze Prize @elseif($officer->performance_score >= 80) ⭐ Excellent @elseif($officer->performance_score >= 60) 👍 Good @elseif($officer->performance_score >= 40) 📊 Average @else 📉 Needs Improvement @endif |