1 | <?php |
||
9 | class Notification extends Model implements HasPresenter |
||
10 | { |
||
11 | protected $guarded = []; |
||
12 | |||
13 | public function fromUser() |
||
17 | |||
18 | public function reply() |
||
22 | |||
23 | public function topic() |
||
27 | |||
28 | /** |
||
29 | * Get the presenter class. |
||
30 | * |
||
31 | * @return string |
||
32 | */ |
||
33 | public function getPresenterClass() |
||
37 | } |
||
38 |