wahyuun
1 year ago
2 changed files with 63 additions and 57 deletions
@ -1,54 +1,54 @@
|
||||
<?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', |
||||
'mulai_proyek', |
||||
'akhir_proyek', |
||||
'area_kerja', |
||||
'lokasi_kantor', |
||||
'rencana_biaya', |
||||
'biaya_actual', |
||||
'company', |
||||
'pm_id', |
||||
'type_proyek_id', |
||||
'divisi_id', |
||||
'persentase_progress', |
||||
'keterangan', |
||||
'durasi_proyek', |
||||
'progress_by_worklog', |
||||
'status', |
||||
'currency_simbol', |
||||
'currency_code', |
||||
'currency_name', |
||||
'project_objectives', |
||||
'considered_success_when', |
||||
'potential_risk', |
||||
'testing_environment', |
||||
'currency_code', |
||||
'currency_symbol', |
||||
'currency_name', |
||||
'budget_health', |
||||
'phase_id', |
||||
'calculation_status', |
||||
'scurve', |
||||
'created_at', |
||||
'created_by', |
||||
'updated_at', |
||||
'updated_by' |
||||
]; |
||||
|
||||
|
||||
} |
||||
<?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', |
||||
'mulai_proyek', |
||||
'akhir_proyek', |
||||
'area_kerja', |
||||
'lokasi_kantor', |
||||
'rencana_biaya', |
||||
'biaya_actual', |
||||
'company', |
||||
'pm_id', |
||||
'type_proyek_id', |
||||
'divisi_id', |
||||
'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' |
||||
]; |
||||
|
||||
|
||||
} |
||||
|
Loading…
Reference in new issue