Harvest Details
Date:
@if($harvest->plannedTask && $harvest->plannedTask->execution_date)
{{ $harvest->plannedTask->execution_date->format('Y-m-d') }}
@else
{{ $harvest->date->format('Y-m-d') }}
@endif
Vineyard Row:
{{ $harvest->vineyardRow->varietyVariation->grapeVariety->variety_name ?? 'Row #' . ($harvest->vineyardRow->id ?? 'N/A') }}
Variety Variation: {{ $harvest->varietyVariation->description ?? 'N/A' }}
Weight: {{ $harvest->weight }} kg
Sugar Content: {{ $harvest->sugar_content }} °NM
Quality: {{ $harvest->quality }}
Grape Condition: {{ $harvest->grape_condition ?? 'N/A' }}
Weather Conditions: {{ $harvest->weather_conditions ?? 'N/A' }}
@if($harvest->harvest_time)
Harvest Time: {{ $harvest->harvest_time }}
@endif
@if($harvest->notes)
Notes:
{{ $harvest->notes }}
@endif
Harvested by: {{ $harvest->user->name ?? 'N/A' }}