You've already forked Epicnabbo-Catalogus-Updated-Daily
41 lines
931 B
PHP
41 lines
931 B
PHP
<?php
|
|
|
|
namespace Filament\Notifications;
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Notifications\Messages\BroadcastMessage;
|
|
use Illuminate\Notifications\Notification as BaseNotification;
|
|
|
|
class BroadcastNotification extends BaseNotification implements ShouldQueue
|
|
{
|
|
use Queueable;
|
|
|
|
/**
|
|
* @param array<string, mixed> $data
|
|
*/
|
|
public function __construct(
|
|
public array $data,
|
|
) {}
|
|
|
|
/**
|
|
* @param Model $notifiable
|
|
* @return array<string>
|
|
*/
|
|
public function via($notifiable): array
|
|
{
|
|
return ['broadcast'];
|
|
}
|
|
|
|
/**
|
|
* @param Model $notifiable
|
|
*/
|
|
public function toBroadcast($notifiable): BroadcastMessage
|
|
{
|
|
return (new BroadcastMessage($this->data))
|
|
->onConnection($this->connection)
|
|
->onQueue($this->queue);
|
|
}
|
|
}
|