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

Beranda Penghuni

@if($penghuni)
Data Anda

Nama: {{ $penghuni->nama }}

Email: {{ $penghuni->email }}

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 {{-- 🔥 PROGRESS IURAN --}} @if($iuran)
Progress Pembayaran Iuran
{{-- STEP 1 --}}
@if($iuran->bukti_pembayaran)
✔
@else
@endif Upload
{{-- STEP 2 --}}
@if($iuran->status == 'lunas')
✔
@elseif($iuran->bukti_pembayaran)
@else
2
@endif Verifikasi
{{-- STEP 3 --}}
@if($iuran->status == 'lunas')
✔
@else
3
@endif Selesai
Status: @if($iuran->status == 'lunas') Lunas @elseif($iuran->bukti_pembayaran) Menunggu Verifikasi @else Belum Bayar @endif
@endif @else
Data penghuni belum tersedia
@endif
@endsection