15 lines
376 B
PHP
15 lines
376 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4D1d extends SigdModel
|
|
{
|
|
protected $table = 'waste_4d1d';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'population', 'protein',
|
|
'ef_f_npr', 'ef_f_non_con', 'ef_f_ind_com', 'ef_n_sludge', 'n_effluent',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|