23 lines
386 B
PHP
23 lines
386 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Location extends Model
|
|
{
|
|
protected $table = 'locations';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'slug',
|
|
'status',
|
|
'description',
|
|
'enhancer_id'
|
|
];
|
|
|
|
public function subLocations(){
|
|
return $this->hasMany(SubLocation::class, 'location_id', 'id');
|
|
}
|
|
}
|