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