21 lines
532 B
PHP
21 lines
532 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Agriculture3C6 extends SigdModel
|
|
{
|
|
protected $table = 'agriculture_3c6';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code',
|
|
'category', 'tag_1', 'tag_2', 'value', 'ne_mms',
|
|
'ef_frac', 'n_volatilization_mms',
|
|
'ef_n2o', 'n2o_g',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|