@extends('layouts.customer') @section('title', 'About Us - Winery') @section('content')

Welcome to Our Winery

Where Tradition Meets Excellence

Discover the passion and craftsmanship behind every bottle of wine we produce

Our Story

Our winery was born from a deep passion for quality wine and a profound respect for traditional viticulture. Nestled in the heart of wine country, our vineyards benefit from ideal conditions that have been carefully cultivated for generations.

What began as a family dream has blossomed into a thriving winery that combines time-honored winemaking techniques with modern innovation. Every step of our process, from grape cultivation to bottling, is executed with meticulous attention to detail and an unwavering commitment to excellence.

We believe that great wine is made in the vineyard. Our dedication to sustainable farming practices and respect for the terroir ensures that each vintage captures the unique character of our land and the exceptional quality of our grapes.

Our Values

Quality & Tradition

We honor traditional winemaking methods while embracing modern techniques to ensure the highest quality in every bottle

Complete Control

From vineyard to bottle, we oversee every step of the winemaking process to maintain our exacting standards

Passion & Care

Every bottle represents our love for winemaking and our dedication to creating exceptional experiences

Sustainable Practices

We are committed to environmentally responsible viticulture that preserves our land for future generations

Award-Winning Wines

Our commitment to excellence has been recognized with numerous awards and accolades in the wine industry

Family Tradition

Generations of winemaking expertise and family values guide everything we do

Our Winemaking Process

1

Vineyard Care

Year-round attention to our vines ensures healthy grapes with optimal flavor development

2

Harvest

We harvest at peak ripeness, carefully selecting only the finest grapes by hand

3

Fermentation

Traditional fermentation methods combined with modern temperature control for perfect results

4

Aging

Our wines mature in carefully selected barrels, developing complexity and character

5

Blending

Expert blending creates balanced, harmonious wines that showcase our terroir

6

Bottling

Each bottle is filled, corked, and labeled with care, ready to deliver excellence

@php $upcomingEvents = collect(); try { if (\Illuminate\Support\Facades\Schema::hasTable('events')) { $upcomingEvents = \App\Models\Event::where('status', 'upcoming') ->where('event_date', '>=', now()) ->orderBy('event_date', 'asc') ->limit(3) ->get(); } } catch (\Throwable $e) { // Table missing or other database issue; fail silently on About page. $upcomingEvents = collect(); } @endphp @if($upcomingEvents->count() > 0)

Upcoming Events

Join us for exclusive wine experiences

@foreach($upcomingEvents as $event)
@if($event->type === 'tasting') 🍷 Wine Tasting @elseif($event->type === 'harvest_festival') 🍇 Harvest Festival @elseif($event->type === 'vineyard_tour') 🚶 Vineyard Tour @endif

{{ $event->name }}

{{ Str::limit($event->description, 150) }}

{{ $event->event_date->format('d.m.Y') }} at {{ $event->event_time->format('H:i') }}
@if($event->location)
{{ $event->location }}
@endif
{{ $event->availableSpots() }} / {{ $event->capacity }} spots available
@endforeach
@endif
@endsection