Manage 4-tier hierarchy: States → Cities → Constituencies → Municipal Wards & Zones.
| State Name | State Code | Cities | Constituencies | Wards | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ substr($state->name, 0, 1) }}
{{ $state->name }}
|
@if($state->code) {{ $state->code }} @else None @endif | |||||
|
No states found. Click "Add State" to create the first state jurisdiction. |
||||||
| City Name | State | City Code | District | Constituencies | Wards | Status | Actions |
|---|---|---|---|---|---|---|---|
|
{{ substr($city->name, 0, 1) }}
{{ $city->name }}
|
{{ $city->state->name ?? 'N/A' }} | @if($city->code) {{ $city->code }} @else — @endif | {{ $city->district ?: '—' }} | ||||
|
No cities found. Click "Add City" to add a municipal corporation. |
|||||||
| Constituency Name | Code | City | State | Wards | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ substr($cst->name, 0, 1) }}
{{ $cst->name }}
|
@if($cst->code) {{ $cst->code }} @else — @endif | {{ $cst->city->name ?? 'N/A' }} | {{ $cst->state->name ?? 'N/A' }} | |||
|
No constituencies found. Click "Add Constituency" to create a Vidhan Sabha assembly segment. |
||||||
| Ward No. | Ward Name / Landmark | Municipal Zone | Constituency | City | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ $ward->ward_number }}
@if($ward->code)
({{ $ward->code }})
@endif
|
{{ $ward->name ?: '—' }}
@if($ward->description)
{{ $ward->description }} @endif |
@if($ward->zone_name) {{ $ward->zone_name }} @else Unassigned @endif | {{ $ward->constituency->name ?? 'N/A' }} | {{ $ward->city->name ?? 'N/A' }} | ||
|
No municipal wards found. Click "Add Ward" to create a ward unit with its municipal zone. |
||||||
Are you sure you want to permanently delete "{{ $deletingName }}"?
Safety Check: Parent records cannot be deleted if child entities (cities, constituencies, or wards) are assigned.