@extends('adminlte::page') @section('title', 'Bail Check-in Statistics') @section('content_header')

Bail Check-in Statistics

@stop @section('content')

Filter Statistics

Reset

{{ $totalScheduled }}

Scheduled

{{ $totalPresent }}

Present

{{ $totalMissed }}

Missed

{{ $totalExcused }}

Excused

Daily Check-in Trends

Compliance Rate

{{ $complianceRate }}%

Overall compliance rate for the selected period

Top 5 Suspects with Missed Check-ins

@forelse($suspectsMostMissed as $item) @empty @endforelse
Suspect Missed Count Actions
{{ $item->suspect->full_name }} {{ $item->missed_count }}
No missed check-ins recorded.

Station Compliance Rates

@forelse($stationStats as $stat) @empty @endforelse
Police Station Total Check-ins Present Missed Compliance Rate
{{ $stat->policeStation->name }} {{ $stat->total_count }} {{ $stat->present_count }} {{ $stat->missed_count }}
{{ $stat->compliance_rate }}%
No station statistics available.
@endsection @section('js') @stop