@extends("layouts.app", ["title" => "Village Details"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Administration", "title" => "Village Details"])
| ID | {{ $village->id }} |
|---|---|
| Village Name | {{ $village->name }} |
| Ward | {{ $village->ward->name }} |
| Constituency | {{ $village->ward->constituency->name ?? 'N/A' }} |
| District | {{ $village->ward->constituency->district->name ?? 'N/A' }} |
| Province | {{ $village->ward->constituency->district->province->name ?? 'N/A' }} |
| Country | {{ $village->ward->constituency->district->province->country->name ?? 'N/A' }} |
| Status | @if($village->active) Active @else Inactive @endif |