Writeoff/Entities/LoanType.php

23 lines
430 B
PHP
Raw Permalink Normal View History

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