invoice = $invoice; $this->company = $company; $this->event_vars = $event_vars; } /** * Get the channels the event should broadcast on. * * @return PrivateChannel|array */ public function broadcastOn() { return ['simple-channel']; } /** * Get the data to broadcast. * * @return array */ public function broadcastWith(): array { return ['id' => 'value']; } }