mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-14 18:02:01 -04:00
23 lines
433 B
PHP
23 lines
433 B
PHP
<?php
|
|
|
|
namespace Modules\Frontend\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class OTTData extends Model
|
|
{
|
|
protected $table = 'studio_plus_video_ott';
|
|
protected $fillable = [
|
|
'studio_plus_video_id',
|
|
'locale',
|
|
'title',
|
|
'category',
|
|
'description',
|
|
];
|
|
|
|
public function links()
|
|
{
|
|
return $this->hasMany(OTTLink::class, 'studio_plus_video_ott_id', 'id');
|
|
}
|
|
}
|