MIF_E31222541/app/Models/HeightVillage.php

19 lines
329 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class HeightVillage extends Model
{
use HasFactory;
protected $table = 'height_village';
protected $fillable = [
'id',
'village_id',
'height',
'year'
];
}