mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-15 02:07:56 -04:00
21 lines
391 B
PHP
21 lines
391 B
PHP
<?php
|
|
|
|
namespace Modules\Frontend\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class SectionItem extends Model
|
|
{
|
|
protected $table = 'frontend_section_items';
|
|
protected $fillable = [
|
|
'section_id',
|
|
'video_id',
|
|
];
|
|
|
|
public function video()
|
|
{
|
|
return $this->belongsTo(Video::class);
|
|
}
|
|
}
|