@extends('layouts.app') @section('content')

Kelola Data Perumahan

@if(session('success'))
{{ session('success') }}
@endif {{-- ===================== --}} {{-- KAVLING --}} {{-- ===================== --}}
Pilih Kavling
@for($i = 1; $i <= 30; $i++) @php $dataRumah = $rumah->where('no_rumah', $i)->first(); @endphp
{{ $i }}
@endfor
🟢 Kosong | 🔴 Terisi
{{-- ===================== --}} {{-- DATA RUMAH --}} {{-- ===================== --}}
Data Rumah
@forelse($rumah as $r) {{-- TYPE --}} {{-- STATUS --}} {{-- KEPEMILIKAN --}} @empty @endforelse
ID Blok No Rumah Type Status Kepemilikan Luas Harga Keterangan
{{ $loop->iteration }} {{ $r->blok }} {{ $r->no_rumah }}{{ $r->type_rumah ?? '-' }} @if($r->status == 'Kosong') Kosong @else Terisi @endif @if($r->status_kepemilikan == 'Tersedia') Tersedia @elseif($r->status_kepemilikan == 'Booking') Booking @else Terjual @endif {{ $r->luas_tanah ?? '-' }} m² @if($r->harga) Rp {{ number_format($r->harga, 0, ',', '.') }} @else - @endif {{ $r->keterangan ?? '-' }}
Belum ada data rumah
@endsection {{-- MODAL --}} @push('scripts') @endpush