@if(session('success'))
{{ session('success') }}
@endif
@if($pelanggan->count() == 0)
Semua pelanggan di {{ $dusunPetugas }} sudah terpasang!
@else
| No. |
Nama |
Alamat |
No. Telp |
Tgl Disetujui |
Lokasi |
Pasang Meteran |
@foreach($pelanggan as $index => $p)
| {{ $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
|
|
@endforeach
{{ $pelanggan->links() }}
@endif