| 1 | <?php |
||
| 9 | class Subscription extends Model |
||
| 10 | { |
||
| 11 | protected $table = 'discuss_subscription'; |
||
| 12 | |||
| 13 | protected $fillable = [ |
||
| 14 | 'subscribable_id', |
||
| 15 | 'subscribable_type', |
||
| 16 | 'user_id', |
||
| 17 | 'user_type' |
||
| 18 | ]; |
||
| 19 | |||
| 20 | public function subscribable() |
||
| 24 | |||
| 25 | public function user() |
||
| 29 | |||
| 30 | public function threads() |
||
| 34 | |||
| 35 | /** |
||
| 36 | * Get all of the videos that are assigned this tag. |
||
| 37 | */ |
||
| 38 | public function channels() |
||
| 42 | } |
||
| 43 |