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

20 lines
313 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Segment extends Model
{
use HasFactory;
protected $fillable = [
'irrigation_id',
'name',
'length',
'geom',
'center_point',
];
}