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