forked from portabilis/i-educar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNotificationEvent.php
65 lines (56 loc) · 1.37 KB
/
NotificationEvent.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
namespace App\Events;
use App\Models\Notification;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class NotificationEvent implements ShouldBroadcast
{
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
/**
* @var Notification
*/
public $notification;
/**
* @var string
*/
public $url;
/**
* @var string
*/
private $tenant;
/**
* Create a new event instance.
*
* @param Notification $notification
* @param string $tenant
* @param string $url
*/
public function __construct(Notification $notification, $url, $tenant)
{
$this->notification = $notification;
$this->url = $url;
$this->tenant = $tenant;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new Channel($this->tenant . '-notification-' . md5($this->notification->user_id));
}
public function tags()
{
return [
$this->tenant,
'notification',
$this->notification->type->name,
];
}
}