sigd/app/Models/Waste4B1.php

20 lines
495 B
PHP

<?php
namespace App\Models;
class Waste4B1 extends SigdModel
{
protected $table = 'waste_4b1';
protected $fillable = [
'id', 'inventory_year', 'activity_year', 'activity_code', 'category',
'value', 'kompos', 'num_waste',
'ef', 'ch4', 'ch4_recovery', 'ch4_final',
'row_num', 'row_status', 'created_by', 'updated_by',
];
public function activity()
{
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
}
}