'decimal:2', 'blend_percentage' => 'decimal:2', ]; /** * Get the wine that this production record belongs to. */ public function wine(): BelongsTo { return $this->belongsTo(Wine::class, 'wine_id'); } /** * Get the harvest used in this wine production. */ public function harvest(): BelongsTo { return $this->belongsTo(Harvest::class, 'harvest_id'); } }