File: /mnt/data/ghayatcom/ghayatcom-api/app/Events/NotificationEvent.php
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class NotificationEvent implements ShouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*
* @return void
*/
public $content;
public $id;
public function __construct($content, $id)
{
$this->content = $content;
$this->id = $id;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastWith()
{
return [$this->content];
}
/**
* @return array()
*/
public function broadcastOn()
{
return ['digmed-appointment-notification'];
}
public function broadcastAs()
{
return 'digimed-notification.'.$this->id;
}
}