message = $message; return $this; } public function dispatch(): void { event($this); } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn() { return [ new Channel('jobs'), ]; } }