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

Beranda Penghuni

@if($penghuni)
Data Anda

Nama: {{ $penghuni->nama }}

Email: {{ $penghuni->email }}

{{-- 🔥 TAMBAHAN --}}

Status Huni: @if($penghuni->status_huni == 'Tetap') Tetap @else Kontrak @endif

@if($penghuni->status_huni == 'Kontrak')

Tanggal Keluar: {{ $penghuni->tanggal_keluar }}

@endif
@if($penghuni->rumah)
Rumah Anda

Blok {{ $penghuni->rumah->blok }} - No {{ $penghuni->rumah->no_rumah }}

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

@endif @else
Data penghuni belum tersedia
@endif @if(!$penghuni)
Lengkapi Data Penghuni
@csrf
@endif
@endsection {{-- 🔥 SCRIPT WAJIB DI SECTION --}} @section('scripts') @endsection