1 | <?php |
||
7 | class Favorite extends Model |
||
8 | { |
||
9 | protected $fillable = [ |
||
10 | 'user_id', |
||
11 | 'video_id', |
||
12 | ]; |
||
13 | |||
14 | /** |
||
15 | * A favorite belongs to a specific user |
||
16 | * |
||
17 | * @return Object |
||
18 | */ |
||
19 | public function user() |
||
23 | |||
24 | /** |
||
25 | * A favorite belongs to a specific video |
||
26 | * |
||
27 | * @return object |
||
28 | */ |
||
29 | public function video() |
||
33 | } |
||
34 |