@extends('layout.app') @section('title', 'Beranda PJU | DIPANTAU') @section('content') @if ($errors->any())
@endif @if(session('success')) @endif
JUMLAH PJU

{{ $jumlah_pju }}

JUMLAH PJUTS

{{ $jumlah_pjuts }}

TOTAL TITIK

{{ $total_titik }}

@php $no=1; @endphp @foreach($pjus as $row) @endforeach
No Kecamatan Desa/Kelurahan RT / RW PJU PJUTS Jumlah Titik Tahun Lokasi
{{ $no++ }} {{ \App\Models\Kecamatan::find($row->kecamatan)->nama_kecamatan ?? '-' }} {{ \App\Models\Desa::find($row->desa)->nama_desa ?? '-' }} RT {{ $row->rt }} / RW {{ $row->rw }} {{ $row->pju }} {{ $row->pjuts }} {{ $row->pju + $row->pjuts }} {{ $row->tahun }}
@endsection @section('scripts') @endsection