patient_id = $patient_id; $this->appointment_id = $appointment_id; } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn(): array { return [ new PrivateChannel('patient-end-call-' . $this->patient_id), ]; } /** * Get the data to broadcast. * * @return array */ public function broadcastWith(): array { return [ 'patient_id' => $this->patient_id, 'appointment_id' => $this->appointment_id ]; } }