simedkom/app/Models/SubLocation.php
2025-02-28 20:42:45 +07:00

24 lines
411 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class SubLocation extends Model
{
protected $table = 'sub_locations';
protected $fillable = [
'name',
'slug',
'status',
'description',
'location_id',
'enhancer_id'
];
public function location(){
return $this->belongsTo(Location::class, 'location_id', 'id');
}
}