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.

32 lines
654 B

2 years ago
<?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 = [
2 years ago
'name_version',
2 years ago
'description',
'date_base_line',
'proyek_id',
'config_dayoff',
2 years ago
'auto_schedule',
'calculation_type',
'committed_cost',
'cost_to_complete',
'progress',
'hierarchy_ftth_id',
2 years ago
'created_at',
'created_by',
'updated_at',
2 years ago
'updated_by'
];
}