Writeoff/Entities/FacilityType.php

17 lines
299 B
PHP
Raw Normal View History

2023-11-06 04:24:50 +00:00
<?php
namespace Modules\Writeoff\Entities;
class FacilityType extends BaseModel
{
protected $fillable = [
'kode',
'name',
'status',
'authorized_at',
'authorized_status',
'authorized_by',
];
}