Veranstaltungen
@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
@endforeach
@else
@if($event->category)
{{ $event->category }}
@endif
{{ $event->title }}
{{ Str::limit($event->description, 110) }}
Details ansehen →Keine Veranstaltungen gefunden
Versuchen Sie, Ihre Filter anzupassen