@extends('layouts.winemaker')
@section('title', 'Vineyard Row Details')
@section('content')
Row #{{ $vineyardRow->id }}
- Location
- {{ $vineyardRow->location ?? '—' }}
- Vine count
- {{ $vineyardRow->vine_count }}
- Status
- {{ $vineyardRow->status }}
- Variation
- {{ $vineyardRow->varietyVariation?->grapeVariety?->variety_name ?? 'Unassigned' }}
- Planting year
- {{ $vineyardRow->planting_year ?? '—' }}
- Area (ha)
- {{ $vineyardRow->area ?? '—' }}
- Notes
- {{ $vineyardRow->notes ?: '—' }}
@endsection