'decimal:1', 'weight_kg' => 'decimal:2', 'height_cm' => 'decimal:1', 'recorded_at' => 'datetime', 'raw_payload' => 'array', ]; } public function consultation(): BelongsTo { return $this->belongsTo(Consultation::class, 'consultation_id'); } public function device(): BelongsTo { return $this->belongsTo(Device::class, 'device_id'); } }