@extends("layouts.app", ["title" => "Villages List"]) @section("content_body") @include("shared.partials.page-title", ["subtitle" => "Administration", "title" => "Villages"])

System Villages

Add Village
@forelse ($villages as $village) @empty @endforelse
ID Name Ward Status Actions
{{ $village->id }} {{ $village->name }} {{ $village->ward->name }} @if($village->active) Active @else Inactive @endif
@csrf @method('DELETE')
No villages configured.
{{ $villages->links() }}
@endsection