14 lines
325 B
PHP
14 lines
325 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4C1 extends SigdModel
|
|
{
|
|
protected $table = 'waste_4c1';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'population', 'fraction', 'msw_p', 'ef_b_frac', 'msw_b',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|