mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
19 lines
529 B
PHP
19 lines
529 B
PHP
<?php
|
|
namespace Modules\Subscription\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Modules\Subscription\Entities\LocationRestriction;
|
|
|
|
class LocationRestrictionState extends Model
|
|
{
|
|
use HasFactory;
|
|
protected $table = "subscription_location_restriction_states";
|
|
protected $guarded = ["id"];
|
|
|
|
public function locationRestriction()
|
|
{
|
|
return $this->belongsTo(LocationRestriction::class, 'location_restriction_id');
|
|
}
|
|
}
|