@extends('layout.layout') @php $title = 'Pemasangan Meteran'; $subTitle = 'Daftar Pelanggan Siap Pasang'; @endphp @section('content')
Daftar Pemasangan Meteran

Area Tugas: {{ $dusunPetugas ?? 'Semua Dusun' }}

{{ $pelanggan->total() }} Menunggu
@if(session('success'))
{{ session('success') }}
@endif @if($pelanggan->count() == 0)

Semua pelanggan di {{ $dusunPetugas }} sudah terpasang!

@else
@foreach($pelanggan as $index => $p) @endforeach
No. Nama Alamat No. Telp Tgl Disetujui Lokasi Pasang Meteran
{{ $pelanggan->firstItem() + $index }} {{ $p->name }} {{ $p->profile->address ?? '-' }} {{ $p->profile->phone_number ?? '-' }} {{ $p->updated_at->format('d M Y') }} @if($p->profile->latitude && $p->profile->longitude) @else - @endif
{{ $pelanggan->links() }}
@endif
{{-- MODAL PASANG METERAN --}} @endsection {{-- ✅ SCRIPT KOMPATIBEL LOCAL & HOSTING --}}