@extends('layouts.admin') @section('title','Laporan Data Perumahan') @section('page-title','Laporan Data Perumahan') @section('content') {{-- Filter --}}
Reset
{{-- Statistik Ringkasan --}} @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) }}
Luas Permukiman (m²)
{{ number_format($statistik->luas_permukiman, 2) }}
@endif
@forelse($data as $item) @empty @endforelse
# Desa Kecamatan Penduduk KK Rumah RLH RTLH Backlog Luas (m²) Status
{{ $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) }} {{ number_format($item->luas_permukiman, 2) }} {{ ucfirst($item->status) }}
📋
Tidak ada data
@if($data->hasPages())
{{ $data->firstItem() }}–{{ $data->lastItem() }} dari {{ $data->total() }} {{ $data->links('components.pagination') }}
@endif
@endsection