1 | <?php namespace Taskforcedev\LaravelForum\Events; |
||
6 | class PostCreated extends Event |
||
7 | { |
||
8 | use SerializesModels; |
||
9 | |||
10 | public $user; |
||
11 | public $post; |
||
12 | |||
13 | public function __construct(ForumPost $post, $user) |
||
14 | { |
||
15 | $this->post = $post; |
||
16 | $this->user = $user; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * Get the channels the event should be broadcast on. |
||
21 | * |
||
22 | * @return array |
||
23 | */ |
||
24 | public function broadcastOn() |
||
28 | } |
||
29 |