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

20 lines
358 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class District extends Model
{
use HasFactory;
protected $table = 'map.district';
protected $keyType = 'string';
public $incrementing = false;
protected $fillable = [
'name',
'city_id',
];
}