title = $title; $this->message = $message; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return ['public']; } public function broadcastAs() { return 'chat'; } public function broadcastWith() { return [ 'title' => $this->title, 'message' => $this->message, ]; } }