sigd/app/Models/ReferenceGhg.php

12 lines
234 B
PHP

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