Writeoff/Entities/LoanType.php
2023-11-06 11:57:18 +07:00

17 lines
295 B
PHP

<?php
namespace Modules\Writeoff\Entities;
class LoanType extends BaseModel
{
protected $fillable = [
'kode',
'name',
'status',
'authorized_at',
'authorized_status',
'authorized_by',
];
}