message = $message; $this->user_id = $user_id; $this->name = $name; } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn(): array { return [ new Channel('chatroom'), ]; } public function broadcastAs(): string { return 'message.sent'; } }