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.
23 lines
852 B
23 lines
852 B
<?php |
|
|
|
namespace App\Models; |
|
|
|
use Illuminate\Database\Eloquent\Model; |
|
|
|
class Activity extends Model |
|
{ |
|
protected $table = 'm_activity'; |
|
|
|
const CREATED_AT = 'created_at'; |
|
const UPDATED_AT = 'updated_at'; |
|
|
|
protected $fillable = [ |
|
'proyek_id', 'parent_id', 'kode_sortname', 'name', 'rencana_biaya', 'start_date', |
|
'end_date', 'area_kerja', 'biaya_actual', 'persentase_bobot', 'persentase_progress', |
|
'buffer_radius', 'duration', 'color_progress', 'jumlah_pekerjaan', 'satuan', |
|
'description', 'priority', 'bobot_planning', 'type_activity', 'open', 'geom', |
|
'version_gantt_id', 'budget_plan', 'biaya_material_plan', 'biaya_human_plan', 'biaya_tools_plan', |
|
'planned_start', 'planned_end', 'satuan_id', |
|
'created_at', 'created_by', 'updated_at', 'updated_by' |
|
]; |
|
}
|
|
|