Writeoff/Entities/LoanType.php

22 lines
404 B
PHP

<?php
namespace Modules\Writeoff\Entities;
class LoanType extends BaseModel
{
protected $fillable = [
'kode',
'name',
'status',
'authorized_at',
'authorized_status',
'authorized_by',
];
public function rekenings()
{
return $this->hasMany(Rekening::class);
}
}