@extends('layouts.app') @section('title', 'Puskesmas') @section('content')

Daftar Puskesmas

@if ($puskesmas->count() > 0) @foreach ($puskesmas as $item) @endforeach
No Nama puskesmas Nama Kecamatan Alamat Puskesmas Latitude Longitude Aksi
{{ $puskesmas->firstItem() + $loop->index }} {{ $item->nama_puskesmas }} {{ $item->kecamatan->nama_kecamatan ?? 'Kecamatan tidak ditemukan' }} {{ $item->alamat_puskesmas ?? 'N/A' }} {{ $item->lat ?? 'N/A' }} {{ $item->long ?? 'N/A' }}
@csrf @method('DELETE')
Edit
{{ $puskesmas->appends(['search' => request('search')])->links('pagination::tailwind', [ 'class' => 'flex items-center space-x-2', 'next' => 'bg-red-500 text-white px-4 py-2 rounded-lg hover:bg-red-600', 'prev' => 'bg-red-500 text-white px-4 py-2 rounded-lg hover:bg-red-600', 'active' => 'bg-red-600 text-white px-4 py-2 rounded-lg', 'disabled' => 'text-gray-400 cursor-not-allowed', ]) }}
@else

Data puskesmas masih kosong

@endif
@endsection