36 lines
745 B
PHP
36 lines
745 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Channels;
|
|
|
|
use App\Events\Users;
|
|
use App\Models\User;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Notifications\Notification;
|
|
|
|
class WebChannel extends Notification
|
|
{
|
|
use Queueable;
|
|
|
|
/**
|
|
* Send the given notification.
|
|
*
|
|
* @param mixed $notifiable
|
|
* @param Notification $notification
|
|
* @return void
|
|
*/
|
|
public function send(mixed $notifiable, Notification $notification): void
|
|
{
|
|
$data = $notification->toArray($notifiable);
|
|
|
|
if (! $data) {
|
|
return;
|
|
}
|
|
|
|
$user_id = $notifiable->user_id ?? $notifiable->id;
|
|
|
|
$user = (new User)->find($user_id);
|
|
|
|
broadcast(new Users($user, $data['event'], $data));
|
|
}
|
|
}
|