@extends('layouts.customer') @section('title', 'Winery - Quality Wine from Our Own Production') @section('content')

Welcome to Winery

Traditional winery with a modern approach

Discover our quality wines from our own production. Each bottle is the result of careful grape cultivation and traditional winemaking methods.

Why choose our wines?

Quality and Tradition

We produce wine in a traditional way with emphasis on quality and authenticity

Own Production

From grape cultivation to bottling - everything under our control

With Love for Wine

Every bottle is the result of our passion and care

@php $featuredWines = \App\Models\Wine::with('grapeVariety') ->where('status', 'ready') ->where('bottles_in_stock', '>', 0) ->orderBy('vintage', 'desc') ->limit(3) ->get(); @endphp @if($featuredWines->count() > 0) @endif

About Us

The Winery was born from a passion for quality wine and traditional viticulture. Our vineyards are located in ideal conditions for growing quality grape varieties.

We use modern technologies combined with traditional methods to ensure the best quality of our wines. Each vintage is unique and reflects the characteristics of that particular period.

We offer a wide range of white and red wines that are the result of careful cultivation and processing of grapes from our own vineyards.

{{ \App\Models\VineyardRow::count() }}
Vineyard Rows
{{ \App\Models\Wine::where('status', 'ready')->count() }}
Wine Varieties
{{ \App\Models\Harvest::count() }}
Successful Harvests

Start Discovering Our Wines

Visit our catalog and choose from our selection of quality wines

Go to Catalog
@endsection