Writeoff/Entities/FacilityType.php
2023-11-06 11:24:50 +07:00

17 lines
299 B
PHP

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