21 lines
608 B
PHP
21 lines
608 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Agriculture3C1 extends SigdModel
|
|
{
|
|
protected $table = 'agriculture_3c1';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code', 'category',
|
|
'luas_panen', 'produktivitas', 'ef_burnt_fraction', 'm_b',
|
|
'ef_combustion_factor', 'ef_ch4', 'ef_co', 'ef_n2o', 'ef_nox',
|
|
'l_fire_ch4', 'l_fire_co', 'l_fire_n2o', 'l_fire_nox',
|
|
'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|