kurirId = $kurirId; $this->latitude = $latitude; $this->longitude = $longitude; } /** * Get the channels the event should broadcast on. * * @return array */ public function broadcastOn(): array { return new \Illuminate\Broadcasting\Channel('kurir-location'); } public function broadcastAs() { return 'location.updated'; } }