@extends('layouts.app') @section('title', 'Master Kecamatan') @section('content')
Master Kecamatan
@forelse ($kecamatan as $_kecamatan) @empty
Data master belum Tersedia.
@endforelse
#
Nama
Nama Provinsi
Koordinat
Geo JSON
{{ ($kecamatan->currentPage() - 1) * $kecamatan->perPage() + $loop->index + 1 }} {{ $_kecamatan->nama }} {{ $_kecamatan->kabupaten->nama }} {{ $_kecamatan->coordinate }} {{ $_kecamatan->geojson ?? '-' }}
{{-- Pagination --}}
{!! $kecamatan->links('includes.custom-pagination') !!}
@if (Session::has('kecamatans-message')) @endif @stop