Zaed_Abdullah/irrigation-report-api/app/Models/Irrigation.php
2024-12-31 11:48:55 +07:00

24 lines
387 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Irrigation extends Model
{
use HasFactory;
protected $fillable = [
'district_id',
'sub_district_id',
'length',
'width',
'geom',
'type',
'name',
'condition',
'canal'
];
}