@extends('layouts.winemaker')
@section('title', 'Vineyard Map')
@push('styles')
@endpush
@section('content')
@php
$vineyardMapRoutes = [
'watering' => route('plan.watering'),
'pruning' => route('plan.pruning'),
'fertilisation' => route('plan.fertilisation'),
'pesticide' => route('plan.pesticide'),
'harvest' => route('plan.harvest'),
'add-plants' => route('vineyard.addPlants'),
'discard-plants' => route('vineyard.rows.discard'),
];
@endphp
@endsection