69 lines
1.3 KiB
PHP
69 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Webkul\Notification\Events;
|
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class UpdateOrderNotification implements ShouldBroadcast
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
protected $data;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct($data)
|
|
{
|
|
$this->data = $data;
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast on.
|
|
*
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
*/
|
|
public function broadcastOn()
|
|
{
|
|
return new Channel('notification');
|
|
}
|
|
|
|
/**
|
|
* Broadcast with data.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function broadcastWith()
|
|
{
|
|
return $this->data;
|
|
}
|
|
|
|
/**
|
|
* Seperate queue.
|
|
*
|
|
* Command: `php artisan queue:work --queue=broadcastable`
|
|
*
|
|
* @return string
|
|
*/
|
|
public function broadcastQueue()
|
|
{
|
|
return 'broadcastable';
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast as.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function broadcastAs()
|
|
{
|
|
return 'update-notification';
|
|
}
|
|
}
|