41 lines
986 B
PHP
41 lines
986 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\ProjectMailing;
|
|
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 ProjectMailingStatus implements ShouldBroadcast
|
|
{
|
|
use SerializesModels;
|
|
|
|
public ProjectMailing $projectMailing;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*/
|
|
public function __construct(ProjectMailing $projectMailing)
|
|
{
|
|
//
|
|
$this->projectMailing = $projectMailing;
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast on.
|
|
*
|
|
* @return array<int, \Illuminate\Broadcasting\Channel>
|
|
*/
|
|
public function broadcastOn(): array
|
|
{
|
|
return [
|
|
new PrivateChannel('mailing.'.$this->projectMailing->id),
|
|
];
|
|
}
|
|
}
|