23 lines
608 B
PHP
23 lines
608 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Agriculture3A2b extends SigdModel
|
|
{
|
|
protected $table = 'agriculture_3a2b';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code',
|
|
'category', 'tag_1', 'tag_2', 'value',
|
|
'ef_proportion', 'num_animal',
|
|
'ef_excretion_rate', 'ef_tam', 'nex',
|
|
'ef_nitrogen_fraction', 'ne_mms',
|
|
'ef_mms', 'n2o_d',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|