@extends('adminlte::page') @section('title', 'Station Reports') @section('content_header')

Station Reports

@stop @section('content')

Filter Options

to

Station Performance Overview

@foreach($stations as $station) @endforeach
Station Officers Total Cases Open Cases Closed Cases Resolution Rate Bail Check-ins Compliance Rate
{{ $station->name }}
{{ $station->location }}
{{ $officersByStation[$station->id] ?? 0 }} {{ $station->total_cases }} {{ $station->open_cases }} {{ $station->closed_cases }}
{{ $station->resolution_rate }}%
{{ $station->total_checkins }}
{{ $station->compliance_rate }}%

Case Resolution Rate by Station

Bail Compliance Rate by Station

Monthly Case Trends by Top Stations

@foreach($stations->take(3) as $station)

{{ $station->name }} - Top Crime Types

@endforeach
@stop @section('css') @stop @section('js') @stop