@extends("layouts.app", ["title" => "Villages List"])
@section("content_body")
@include("shared.partials.page-title", ["subtitle" => "Administration", "title" => "Villages"])
| ID |
Name |
Ward |
Status |
Actions |
@forelse ($villages as $village)
| {{ $village->id }} |
{{ $village->name }} |
{{ $village->ward->name }} |
@if($village->active)
Active
@else
Inactive
@endif
|
|
@empty
| No villages configured. |
@endforelse
{{ $villages->links() }}
@endsection