sigd/app/Models/EnergyPLN.php

20 lines
459 B
PHP

<?php
namespace App\Models;
class EnergyPLN extends SigdModel
{
protected $table = 'energy_pln';
protected $fillable = [
'id', 'inventory_year', 'activity_year', 'activity_code',
'value', 'ef_listrik_terkoreksi', 'co2_ton', 'co2_gg',
'row_num', 'row_status', 'created_by', 'updated_by',
];
public function activity()
{
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
}
}