@extends('layouts.app') @section('title', 'View District') @section('page-title', 'District Details') @section('content')
District Details

{{ $district->id }}

@if($district->is_active) Active @else Inactive @endif

{{ $district->name }}

@if($district->code) {{ $district->code }} @else Not specified @endif

{{ $district->description ?: 'No description provided' }}

{{ $district->created_at->format('M d, Y H:i A') }}

{{ $district->updated_at->format('M d, Y H:i A') }}

@endsection