sigd/app/Models/CmsFilePeraturan.php

12 lines
245 B
PHP

<?php
namespace App\Models;
class CmsFilePeraturan extends SigdModel
{
protected $table = 'file_peraturan';
protected $fillable = [
'id', 'name', 'file_upload', 'description', 'row_status', 'created_by', 'updated_by',
];
}