@extends('layouts.app') @section('content')
{{-- 🔥 DATA ANDA --}}
👤 Data Anda

Nama: {{ auth()->user()->name }}

Email: {{ auth()->user()->email }}

Status Huni: @if($penghuni && $penghuni->rumah) Tetap @else Belum Punya Rumah @endif

{{-- 🔥 RUMAH SAYA --}}

🏠 Rumah Saya

@if($penghuni && $penghuni->rumah)

Blok: {{ $penghuni->rumah->blok }}

No Rumah: {{ $penghuni->rumah->no_rumah }}

Status: {{ $penghuni->rumah->status }}

@else
Anda belum memiliki rumah, silakan pilih kavling
{{-- PILIH KAVLING --}}
Pilih Kavling
@foreach($rumahList as $r) @endforeach
Kosong Terisi
@endif
@endsection @section('scripts') @endsection