Custom Backend OSPRO Surveyor Indonesia
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
654 B

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class VersionGantt extends Model
{
protected $table = 'm_version_gantt';
const CREATED_AT = 'created_at';
const UPDATED_AT = 'updated_at';
protected $fillable = [
'name_version',
'description',
'date_base_line',
'proyek_id',
'config_dayoff',
'auto_schedule',
'calculation_type',
'committed_cost',
'cost_to_complete',
'progress',
'hierarchy_ftth_id',
'created_at',
'created_by',
'updated_at',
'updated_by'
];
}