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