File: /var/www/vhost/disk-apps/alq-cali.bikenow.co/app/Events/Ticket/NotificationTicketEvent.php
<?php
namespace App\Events\Ticket;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class NotificationTicketEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $ticketMainId;
public $validateSendingStatus;
public $userId;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($ticketMainId, $validateSendingStatus, $userId)
{
$this->ticketMainId = $ticketMainId;
$this->validateSendingStatus = $validateSendingStatus;
$this->userId = $userId;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return [];
}
}