22 lines
393 B
PHP
22 lines
393 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class MitigationRendahKarbonDaerah extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'mitigation_rendah_karbon_daerah';
|
|
|
|
protected $fillable = [
|
|
'sector',
|
|
'sub_sector',
|
|
'name',
|
|
'created_by',
|
|
'updated_by'
|
|
];
|
|
}
|