22 lines
502 B
PHP
22 lines
502 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Agriculture3A extends SigdModel
|
|
{
|
|
protected $table = 'agriculture_3a';
|
|
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code',
|
|
'category', 'tag_1', 'value',
|
|
'ef_proportion', 'num_animal',
|
|
'ef', 'ch4',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|