update = $update; // true or false $this->bookingId = $bookingId; // unique booking identifier } /** * Get the channels the event should broadcast on. * * @return \Illuminate\Broadcasting\Channel|array */ public function broadcastOn() { return new Channel('admin.pdf.1688.processing.' . $this->bookingId); } }