1 | <?php |
||
8 | class Video extends Model |
||
9 | { |
||
10 | protected $table = 'laravel_videoables'; |
||
11 | protected $fillable = ['source', 'code', 'title', 'width', 'height', 'videoable_id', 'videoable_type']; |
||
12 | |||
13 | public function videoable() |
||
14 | { |
||
15 | return $this->morphTo(); |
||
16 | } |
||
17 | |||
18 | 4 | public function getEmbed() |
|
28 | } |
||
29 |