@extends('layouts.app') @section('content')
Daftar Penghuni
@forelse($penghuni as $p) @empty @endforelse
# Nama No KTP No HP Alamat Blok No Rumah Status Status Huni Tgl Masuk Tgl Keluar Aksi
{{ $loop->iteration }} {{ $p->nama }} {{ $p->no_ktp }} {{ $p->telepon }} {{ $p->alamat }} {{ $p->rumah->blok ?? '-' }} {{ $p->rumah->no_rumah ?? '-' }} @if($p->status_huni == 'Kontrak' && $p->tanggal_keluar && now()->gt(\Carbon\Carbon::parse($p->tanggal_keluar))) Tidak Aktif @else Aktif @endif {{ $p->status_huni }} {{ \Carbon\Carbon::parse($p->tanggal_masuk)->format('d-m-Y') }} {{ $p->tanggal_keluar ?? '-' }} Edit Hapus
Belum ada data penghuni
@endsection @section('scripts') @endsection