@extends('layouts.app') @section('content') {{-- ===== PAGE HEADER ===== --}}

Data Rumah (RT)

Kelola data rumah & status hunian

{{-- ===== TABLE CARD ===== --}}
Daftar Rumah
@forelse($rumah as $r) @php $clusterMap = [ 'A'=>'Cluster Gardenia','B'=>'Cluster Gardenia','C'=>'Cluster Gardenia', 'D'=>'Cluster Gardenia','E'=>'Cluster Gardenia','F'=>'Cluster Gardenia','G'=>'Cluster Gardenia', 'H'=>'Cluster Edelweis','I'=>'Cluster Edelweis', 'J'=>'Blok J','K'=>'Blok K','L'=>'Blok L', ]; $clusterR = $clusterMap[$r->blok] ?? '-'; @endphp @empty @endforelse
ID Cluster Blok No Rumah Status
{{ $loop->iteration }} {{ $clusterR }} {{ $r->blok }} {{ $r->no_rumah }} @if($r->status == 'aktif' || $r->status == 'Terisi') {{ ucfirst($r->status) }} @else {{ ucfirst($r->status) }} @endif

Tidak ada data rumah

@endsection