@include('partials.header')

Veranstaltungen

@if($events->count() > 0)
@foreach($events as $event) @php $colors = [ 'Musik' => ['stripe' => '#8b5cf6', 'bg' => '#f3f0ff', 'text' => '#6d28d9'], 'Film' => ['stripe' => '#ec4899', 'bg' => '#fdf2f8', 'text' => '#be185d'], 'Sport' => ['stripe' => '#10b981', 'bg' => '#ecfdf5', 'text' => '#065f46'], 'Kunst' => ['stripe' => '#f59e0b', 'bg' => '#fffbeb', 'text' => '#92400e'], 'Literatur' => ['stripe' => '#3b82f6', 'bg' => '#eff6ff', 'text' => '#1d4ed8'], 'Kulinarik' => ['stripe' => '#ef4444', 'bg' => '#fef2f2', 'text' => '#b91c1c'], 'Theater' => ['stripe' => '#f97316', 'bg' => '#fff7ed', 'text' => '#c2410c'], ]; $color = $colors[$event->category] ?? ['stripe' => '#667eea', 'bg' => '#f0f0ff', 'text' => '#4338ca']; @endphp
@if($event->category) {{ $event->category }} @endif

{{ $event->title }}

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

@if($event->occurrences && $event->occurrences->count() > 0) 📅 {{ $event->occurrences->first()->start_datetime->format('d.m.Y') }} @endif @if($event->location_id && $event->location) 📍 {{ $event->location->name }} @endif
Details ansehen →
@endforeach
@else

Keine Veranstaltungen gefunden

Versuchen Sie, Ihre Filter anzupassen

@endif
@include('partials.footer')