message = $message; return $this; } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel */ public function broadcastOn() { return new Channel($this->channel); } public function shouldReload(): static { $this->reload = true; return $this; } }