+ {{-- Abgesagt-Banner --}}
+ @if ($event->status === \App\Enums\EventStatus::Cancelled)
+
+ {{ __('events.share_cancelled_notice') }}
+
+ @endif
+
+ {{-- Event-Typ Badge + Team --}}
+
+
+ {{-- Gegner und Ergebnis (bei Spielen) --}}
+ @if ($event->type->isGameType() && $event->opponent)
+
+ {{ __('events.vs') }} {{ $event->opponent }}
+ @if ($event->hasScore())
+ {{ $event->scoreDisplay() }}
+ @endif
+
+ @endif
+
+ {{-- Datum und Uhrzeit --}}
+
+
+
+
+ {{ $event->start_at->translatedFormat(__('ui.date_format_long')) }} {{ __('ui.clock') }}
+ @if ($event->end_at)
+ – {{ $event->end_at->format('H:i') }} {{ __('ui.clock') }}
+ @endif
+
+
+
+ @if ($event->location_name || $event->address_text)
+
+
+
+ @if ($event->location_name)
+ {{ $event->location_name }}
+ @endif
+ @if ($event->location_name && $event->address_text)
+
+ @endif
+ @if ($event->address_text)
+ {{ $event->address_text }}
+ @endif
+
+
+ @endif
+