20 lines
459 B
PHP
20 lines
459 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class EnergyGpcI42 extends SigdModel
|
|
{
|
|
protected $table = 'energy_gpc_i_4_2';
|
|
|
|
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');
|
|
}
|
|
}
|