wahyuun
1 year ago
2 changed files with 63 additions and 57 deletions
@ -1,54 +1,54 @@ |
|||||||
<?php |
<?php |
||||||
|
|
||||||
namespace App\Models; |
namespace App\Models; |
||||||
|
|
||||||
use Illuminate\Database\Eloquent\Model; |
use Illuminate\Database\Eloquent\Model; |
||||||
|
|
||||||
class Project extends Model |
class Project extends Model |
||||||
{ |
{ |
||||||
protected $table = 'm_proyek'; |
protected $table = 'm_proyek'; |
||||||
|
|
||||||
const CREATED_AT = 'created_at'; |
const CREATED_AT = 'created_at'; |
||||||
const UPDATED_AT = 'updated_at'; |
const UPDATED_AT = 'updated_at'; |
||||||
|
|
||||||
protected $fillable = [ |
protected $fillable = [ |
||||||
'kode_sortname', |
'kode_sortname', |
||||||
'jumlah_stakeholder', |
'jumlah_stakeholder', |
||||||
'nama', |
'nama', |
||||||
'mulai_proyek', |
'mulai_proyek', |
||||||
'akhir_proyek', |
'akhir_proyek', |
||||||
'area_kerja', |
'area_kerja', |
||||||
'lokasi_kantor', |
'lokasi_kantor', |
||||||
'rencana_biaya', |
'rencana_biaya', |
||||||
'biaya_actual', |
'biaya_actual', |
||||||
'company', |
'company', |
||||||
'pm_id', |
'pm_id', |
||||||
'type_proyek_id', |
'type_proyek_id', |
||||||
'divisi_id', |
'divisi_id', |
||||||
'persentase_progress', |
'persentase_progress', |
||||||
'keterangan', |
'keterangan', |
||||||
'durasi_proyek', |
'durasi_proyek', |
||||||
'progress_by_worklog', |
'progress_by_worklog', |
||||||
'status', |
'status', |
||||||
'currency_simbol', |
'currency_symbol', |
||||||
'currency_code', |
'currency_code', |
||||||
'currency_name', |
'currency_name', |
||||||
'project_objectives', |
'project_objectives', |
||||||
'considered_success_when', |
'considered_success_when', |
||||||
'potential_risk', |
'potential_risk', |
||||||
'testing_environment', |
'testing_environment', |
||||||
'currency_code', |
'budget_health', |
||||||
'currency_symbol', |
'phase_id', |
||||||
'currency_name', |
'late_consequence', |
||||||
'budget_health', |
'assumtion', |
||||||
'phase_id', |
'calculation_status', |
||||||
'calculation_status', |
'structur_organization', |
||||||
'scurve', |
'scurve', |
||||||
'created_at', |
'created_at', |
||||||
'created_by', |
'created_by', |
||||||
'updated_at', |
'updated_at', |
||||||
'updated_by' |
'updated_by' |
||||||
]; |
]; |
||||||
|
|
||||||
|
|
||||||
} |
} |
||||||
|
Loading…
Reference in new issue