@extends('layouts.winemaker') @section('title', 'Vineyard Overview') @push('styles') @endpush @section('content')

Rows

@forelse ($rows as $row) @empty @endforelse
ID Location Variety Vine count Planting year Status Last treatment Upcoming plans
{{ $row->id }} {{ $row->location ?? '—' }} {{ $row->varietyVariation?->grapeVariety?->variety_name ?? 'N/A' }} {{ $row->vine_count }} {{ $row->planting_year ?? '—' }} {{ $row->status }} {{ optional($row->last_treatment_at)->format('Y-m-d') ?? '—' }} {{ $row->upcoming_planned_count ?? 0 }}
No rows match the selected filters.
{{ $rows->withQueryString()->links() }}
@endsection