mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 09:01:42 -04:00
19 lines
358 B
PHP
19 lines
358 B
PHP
<?php
|
|
|
|
namespace Modules\StudioPlus\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Modules\StudioPlus\Traits\ScopeTrait;
|
|
|
|
class StudioPlusVideoOttShop extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = "studio_plus_video_ott_shops";
|
|
|
|
protected $fillable = [
|
|
'name'
|
|
];
|
|
}
|