@extends('adminlte::page') @section('title', 'Police Stations') @section('content_header')

Police Stations

Add New Station
@stop @section('content') @if (session('success')) @endif @if (session('error')) @endif
@forelse ($stations as $station) @empty @endforelse
Code Name Location Commander Status Actions
{{ $station->code }} {{ $station->name }} @if ($station->is_headquarters) HQ @endif {{ $station->city }}, {{ $station->region }} {{ $station->commander ? $station->commander->name : 'Not Assigned' }} @if ($station->is_active) Active @else Inactive @endif
No police stations found.
{{ $stations->links() }}
@stop @section('css') @stop @section('js') @stop