@extends('adminlte::page') @section('title', 'Police Station Details') @section('content_header')
Station Code | {{ $station->code }} |
---|---|
Status | @if ($station->is_active) Active @else Inactive @endif |
Address | {{ $station->address }} |
City | {{ $station->city }} |
Region | {{ $station->region }} |
Phone | {{ $station->phone ?? 'N/A' }} |
{{ $station->email ?? 'N/A' }} |
{{ $station->commander->rank ?? 'No rank' }} @if ($station->commander->badge_number) {{ $station->commander->badge_number }} @endif
No commander assigned to this station.
@endifName | Rank | Badge Number |
---|---|---|
{{ $officer->name }} | {{ $officer->rank ?? 'N/A' }} | {{ $officer->badge_number ?? 'N/A' }} |
No officers assigned to this station.
@endif