lpj/app/Models/StatusPermohonan.php

10 lines
216 B
PHP
Raw Normal View History

2024-08-24 09:05:39 +00:00
<?php
namespace Modules\Lpj\Models;
class StatusPermohonan extends Base
{
protected $table = 'status_permohonan';
2024-08-27 03:23:32 +00:00
protected $fillable = ['name', 'description','status','slug'];
2024-08-24 09:05:39 +00:00
}