{{ __('General') }} - {{ Auth::user()->name }} Dashboard

Dashboard Overview • {{ now()->format('F j, Y') }}

LIVE

Requested
{{ $applicationcount }}
Male
{{ $requestedMale }}
Female
{{ $requestedFemale }}
Online
{{ $requestedOnline }}
Physical
{{ $requestedPhysical }}
Total applications submitted for processing
Accepted
{{ $acceptedApplications }}
Male
{{ $acceptedMale }}
Female
{{ $acceptedFemale }}
Online
{{ $acceptedOnline }}
Physical
{{ $acceptedPhysical }}
Applications accepted by Officer
Approved
{{ $approvedApplication }}
Male
{{ $approvedMale }}
Female
{{ $approvedFemale }}
Online
{{ $approvedOnline }}
Physical
{{ $approvedPhysical }}
Applications that have been officially approved
Rejected
{{ $rejectedApplication }}
Male
{{ $rejectedMale }}
Female
{{ $rejectedFemale }}
Online
{{ $rejectedOnline }}
Physical
{{ $rejectedPhysical }}
Applications that did not meet requirements
Appointed
{{ $appointedApplication }}
Male
{{ $appointedMale }}
Female
{{ $appointedFemale }}
Online
{{ $appointedOnline }}
Physical
{{ $appointedPhysical }}
Applications with scheduled appointments
Pending
{{ $pendingApplication }}
Male
{{ $pendingMale }}
Female
{{ $pendingFemale }}
Online
{{ $pendingOnline }}
Physical
{{ $pendingPhysical }}
Applications awaiting review or decision
Top 10 Most Requested Services
Most popular services based on application volume
@foreach ($topServices as $index => $service) @endforeach
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)
{{ number_format(($service->total / $applicationcount) * 100, 2) }}%
@else 0% @endif
Officer Performance Ranking - Prize Evaluation
Ranked by: (Processed - Pending) / Total Applications
@foreach ($officers as $officer) @endforeach
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->efficiency_rate }}%
{{ $officer->pending_rate }}%
{{ $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
Performance Calculation:
  • 📊 Performance Score: (Processed - Pending) / Total × 100
  • Processed: Approved + Rejected + Appointed applications
  • Pending: Applications not reviewed yet
  • 🏆 Gold Prize: Rank 1 with positive performance
  • 🥈 Silver Prize: Rank 2 with positive performance
  • 🥉 Bronze Prize: Rank 3 with positive performance