20 lines
540 B
PHP
20 lines
540 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4D1c extends SigdModel
|
|
{
|
|
protected $table = 'waste_4d1c';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'activity_code', 'category',
|
|
'group_fraction', 'value', 'usage_level', 'ef', 'tow',
|
|
'ef_sludge_removed', 'ef_methane_flared', 'ch4_kg', 'ch4_gg',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
|
|
public function activity()
|
|
{
|
|
return $this->belongsTo(ReferenceActivity::class, 'activity_code', 'code');
|
|
}
|
|
}
|