@include('partials.header')
← Zurück zur Übersicht
@if($event->category) {{ $event->category }} @endif @if($event->source) Quelle: {{ $event->source->name }} @endif

{{ $event->title }}

@if($event->occurrences->count() > 0) @php $first = $event->occurrences->first(); @endphp
📅

{{ $first->start_datetime->format('d. F Y') }}

{{ $first->start_datetime->format('H:i') }}{{ $first->end_datetime ? ' – ' . $first->end_datetime->format('H:i') : '' }} Uhr

@endif @if($event->location)
📍

{{ $event->location->name }}, {{ $event->location->city }}

@endif
@if($event->description)
Beschreibung

{{ $event->description }}

@endif @if($event->occurrences->count() > 0)
Alle Termine ({{ $event->occurrences->count() }})
@foreach($event->occurrences as $occ)
{{ $occ->start_datetime->format('d. F Y') }}
{{ $occ->start_datetime->format('H:i') }}{{ $occ->end_datetime ? ' – ' . $occ->end_datetime->format('H:i') : '' }} Uhr
@php $statusLabels = [ 'scheduled' => 'Geplant', 'cancelled' => 'Abgesagt', 'postponed' => 'Verschoben', 'sold_out' => 'Ausverkauft', 'completed' => 'Abgeschlossen', ]; $statusLabel = $statusLabels[$occ->status] ?? ucfirst($occ->status); @endphp {{ $statusLabel }}
@endforeach
@endif @if($event->contact_email || $event->contact_phone || $event->website_url)
Kontakt & Links
@if($event->contact_email) @endif @if($event->contact_phone) @endif @if($event->website_url)
Zur Website →
@endif
@endif
@if($event->website_url) 🎫 Tickets / Mehr Info @endif ← Alle Veranstaltungen
@include('partials.footer')