Officer Report Dashboard

Last updated: Just now
Filter Applications
Reset
Gender Distribution

{{ $totalMale }}

Male Applicants

{{ $totalFemale }}

Female Applicants
@php $totalGender = $totalMale + $totalFemale; $malePercent = $totalGender > 0 ? ($totalMale / $totalGender) * 100 : 0; $femalePercent = $totalGender > 0 ? ($totalFemale / $totalGender) * 100 : 0; @endphp
Application Type

{{ $totalOnline }}

Online Applications

{{ $totalPhysical }}

Physical Applications
@php $totalType = $totalOnline + $totalPhysical; $onlinePercent = $totalType > 0 ? ($totalOnline / $totalType) * 100 : 0; $physicalPercent = $totalType > 0 ? ($totalPhysical / $totalType) * 100 : 0; @endphp
Total

{{ $total }}

All Applications
Approved

{{ $approved }}

Successfully processed
Pending

{{ $pending }}

Awaiting review
Rejected

{{ $rejected }}

Not approved
Assigned Applications
{{ $totalApplications }} total
@forelse($activities as $app) @empty @endforelse
ID Applicant Gender Service Status Type Submitted
{{ $app['id'] }}
{{ $app['applicant'] ?? 'N/A' }}
{{ ucfirst($app['gender'] ?? '-') }} {{ $app['service'] ?? 'N/A' }} {{ ucfirst($app['status']) }} {{ ucfirst($app['type']) }} {{ $app['submitted'] }}

No applications found for the selected period.

@if ($applications->hasPages()) @endif