@extends('layouts.app') @section('title', 'View Upazila') @section('page-title', 'Upazila Details') @section('content')
{{ $upazila->id }}
@if($upazila->is_active) Active @else Inactive @endif
@if($upazila->district) {{ $upazila->district->name }} @else No District Assigned @endif
{{ $upazila->name }}
@if($upazila->code) {{ $upazila->code }} @else Not specified @endif
{{ $upazila->description ?: 'No description provided' }}
{{ $upazila->created_at->format('M d, Y H:i A') }}
{{ $upazila->updated_at->format('M d, Y H:i A') }}