2024-12-11 12:29:55 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
class Region extends Model
|
|
|
|
|
{
|
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
|
|
protected $table = 'region';
|
|
|
|
|
protected $fillable = [
|
2024-12-24 15:12:24 +07:00
|
|
|
'head_id',
|
2024-12-11 12:29:55 +07:00
|
|
|
'code',
|
|
|
|
|
'name',
|
|
|
|
|
];
|
2024-12-24 15:12:24 +07:00
|
|
|
|
|
|
|
|
public function head()
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo('App\Models\Admin');
|
|
|
|
|
}
|
2024-12-11 12:29:55 +07:00
|
|
|
}
|