@if($event->category)
{{ $event->category }}
@endif
@if($event->source)
Quelle: {{ $event->source->name }}
@endif
{{ $event->title }}
@if($event->occurrences->count() > 0)
@php $firstOccurrence = $event->occurrences->first(); @endphp
📅
Nächster Termin
{{ $firstOccurrence->start_datetime->format('d. F Y') }}
⏰
Uhrzeit
{{ $firstOccurrence->start_datetime->format('H:i') }}
@if($firstOccurrence->end_datetime)
- {{ $firstOccurrence->end_datetime->format('H:i') }}
@endif
Uhr
@endif
@if($event->location)
📍
Ort
{{ $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 $occurrence)
📅 {{ $occurrence->start_datetime->format('d. F Y') }}
⏰ {{ $occurrence->start_datetime->format('H:i') }}
@if($occurrence->end_datetime)
- {{ $occurrence->end_datetime->format('H:i') }}
@endif
Uhr
{{ ucfirst($occurrence->status) }}
@endforeach
@endif
@if($event->contact_email || $event->contact_phone || $event->website_url)
Kontakt & Links
@endif