project-ta/.history/app/Models/Penghuni_20260401002232.php

35 lines
589 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Penghuni extends Model
{
use HasFactory;
protected $table = 'penghuni';
protected $fillable = [
'nama',
'no_ktp',
'email',
'telepon',
'alamat',
'blok_rumah',
'no_rumah',
'status',
'status_huni',
'tanggal_masuk',
'tanggal_keluar',
];
// 🔥 RELASI KE RUMAH
public function rumah()
{
return $this->belongsTo(Rumah::class, 'rumah_id');
}
}