user = $user; $this->userReal = $user_real; } public function getUser() { return $this->user; } public function getUserReal() { return $this->userReal; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return new PrivateChannel('channel-name'); } }