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

27 lines
501 B
PHP

<?php
namespace App\Models\Map;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class SubDistrict extends Model
{
use HasFactory;
protected $table = 'map.sub_district';
protected $keyType = 'string';
public $incrementing = false;
protected $fillable = [
'id',
'city_id',
'district_id',
'name',
'type',
'area_km2',
'created_at',
'updated_at',
'geom'
];
}