@extends('admin.layouts.app') @section('title', 'Kelola Lokasi - Kecamatan') @section('page-title', 'KELOLA LOKASI — KECAMATAN') @section('content')
@if(session('success')) @endif
Tambah Kecamatan
@csrf
@error('code')
{{ $message }}
@enderror
@error('name')
{{ $message }}
@enderror
Daftar Kecamatan di {{ $city->name }}
@forelse($districts as $i => $item) @empty @endforelse
No Kode Nama Jml Kelurahan Aksi
{{ $districts->firstItem() + $i }} {{ $item->code }} {{ $item->name }} {{ $item->villages()->count() }}
@csrf @method('DELETE')
Belum ada data kecamatan.
@endsection