39 lines
705 B
PHP
39 lines
705 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class KasBendahara extends Model
|
|
{
|
|
protected $table = 'kas_bendahara';
|
|
|
|
protected $fillable = [
|
|
'bendahara_id',
|
|
'rt_id',
|
|
'penghuni_id',
|
|
'jenis',
|
|
'jumlah',
|
|
'keterangan',
|
|
'status',
|
|
'metode',
|
|
'bukti_pembayaran',
|
|
'iuran_id',
|
|
];
|
|
|
|
public function bendahara()
|
|
{
|
|
return $this->belongsTo(User::class, 'bendahara_id');
|
|
}
|
|
|
|
public function iuran()
|
|
{
|
|
return $this->belongsTo(Iuran::class, 'iuran_id');
|
|
}
|
|
|
|
public function penghuni()
|
|
{
|
|
return $this->belongsTo(Penghuni::class, 'penghuni_id');
|
|
}
|
|
}
|