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.
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
|
|
|
class Project extends Model
|
|
|
|
{
|
|
|
|
protected $table = 'm_proyek';
|
|
|
|
|
|
|
|
const CREATED_AT = 'created_at';
|
|
|
|
const UPDATED_AT = 'updated_at';
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
'kode_sortname',
|
|
|
|
'jumlah_stakeholder',
|
|
|
|
'nama',
|
|
|
|
'nickname',
|
|
|
|
'mulai_proyek',
|
|
|
|
'akhir_proyek',
|
|
|
|
'area_kerja',
|
|
|
|
'lokasi_kantor',
|
|
|
|
'rencana_biaya',
|
|
|
|
'biaya_actual',
|
|
|
|
'company',
|
|
|
|
'pm_id',
|
|
|
|
'scoupe_of_work',
|
|
|
|
'type_proyek_id',
|
|
|
|
'divisi_id',
|
|
|
|
'value_proyek',
|
|
|
|
'persentase_progress',
|
|
|
|
'keterangan',
|
|
|
|
'durasi_proyek',
|
|
|
|
'progress_by_worklog',
|
|
|
|
'status',
|
|
|
|
'currency_symbol',
|
|
|
|
'currency_code',
|
|
|
|
'currency_name',
|
|
|
|
'project_objectives',
|
|
|
|
'considered_success_when',
|
|
|
|
'potential_risk',
|
|
|
|
'testing_environment',
|
|
|
|
'budget_health',
|
|
|
|
'phase_id',
|
|
|
|
'late_consequence',
|
|
|
|
'assumtion',
|
|
|
|
'calculation_status',
|
|
|
|
'structur_organization',
|
|
|
|
'scurve',
|
|
|
|
'created_at',
|
|
|
|
'created_by',
|
|
|
|
'updated_at',
|
|
|
|
'updated_by',
|
|
|
|
'created_by_id',
|
|
|
|
'company_id',
|
|
|
|
'deleted_at',
|
|
|
|
'deleted_by_id',
|
|
|
|
'income_year',
|
|
|
|
'schedule_health'
|
|
|
|
];
|
|
|
|
}
|