File "PusherNotificationAdminEvent.php"
Full Path: /home/bettaeza/flyinsyria.com/.well-known/Events/PusherNotificationAdminEvent.php
File size: 1.08 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Support\Facades\Auth;
class PusherNotificationAdminEvent implements ShouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $message;
public $avatar;
public $link;
public $idNotification;
public function __construct($idNotification, $data, $user)
{
if($user->avatar_url){
$avatar = '<img class="image-responsive" src="'.$user->avatar_url.'" alt="'.$user->getDisplayName().'">';
}else{
$avatar = '<span class="avatar-text">'.ucfirst($user->getDisplayName()[0]).'</span>';
}
$this->avatar = $avatar;
$this->link = @$data['link'];
$this->idNotification = $idNotification;
$this->message = @$data['message'];
}
public function broadcastOn()
{
return ['admin-channel'];
}
}