@extends('layouts.petugas') @section('title','Laporan') @section('page-title','Laporan Data Perumahan') @section('content')
Reset
@if($statistik)
Total Penduduk
{{ number_format($statistik->jumlah_penduduk) }}
Total KK
{{ number_format($statistik->jumlah_kk) }}
Total Rumah
{{ number_format($statistik->jumlah_rumah) }}
Total RLH
{{ number_format($statistik->rlh) }}
Total RTLH
{{ number_format($statistik->rtlh) }}
Total Backlog
{{ number_format($statistik->backlog) }}
@endif
@forelse($data as $item) @empty @endforelse
#DesaKecamatanPendudukKKRumahRLHRTLHBacklogStatus
{{ $data->firstItem() + $loop->index }} {{ $item->desa?->nama }} {{ $item->desa?->kecamatan?->nama }} {{ number_format($item->jumlah_penduduk) }} {{ number_format($item->jumlah_kk) }} {{ number_format($item->jumlah_rumah) }} {{ number_format($item->rlh) }} {{ number_format($item->rtlh) }} {{ number_format($item->backlog) }} {{ ucfirst($item->status) }}
📋
Tidak ada data
@if($data->hasPages())
{{ $data->firstItem() }}–{{ $data->lastItem() }} dari {{ $data->total() }} {{ $data->links('components.pagination') }}
@endif
@endsection