sigd/app/Models/EnergyGpcI13.php

20 lines
459 B
PHP

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