Files
aso/app/Models/District.php
2022-11-03 09:51:22 +07:00

28 lines
466 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class District extends Model
{
use HasFactory;
protected $fillable = [
'id',
'city_id',
'name'
];
public function city()
{
return $this->belongsTo(City::class, 'city_id');
}
public function villages()
{
return $this->hasMany(Village::class, 'district_id');
}
}