15 lines
371 B
PHP
15 lines
371 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
class Waste4A extends SigdModel
|
|
{
|
|
protected $table = 'waste_4a';
|
|
protected $fillable = [
|
|
'id', 'inventory_year', 'activity_year', 'category',
|
|
'sisa_makanan', 'kertas', 'nappies', 'taman', 'kayu', 'tekstil',
|
|
'total', 'ch4_recovery', 'ch4',
|
|
'row_num', 'row_status', 'created_by', 'updated_by',
|
|
];
|
|
}
|