application_id = $application_id; $this->tournament_id = $tournament_id; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return new Channel('Tournament.'.$this->tournament_id); } public $application_id; public $tournament_id; }