$this->id, 'event_type' => $this->event_type, 'event_at' => $this->event_at?->toIso8601String(), 'coordinates' => $this->coordinates ? [ 'lat' => $this->coordinates->latitude, 'lng' => $this->coordinates->longitude, ] : null, 'recorded_by' => $this->whenLoaded('recordedBy', fn () => [ 'id' => $this->recordedBy?->uuid, 'name' => $this->recordedBy?->full_name, ]), 'related_type' => $this->related_type, 'related_id' => $this->related_id, 'metadata' => $this->metadata, 'notes' => $this->notes, ]; } }