Show event list
@svg('img/icons/down-arrow', 'text-blue-500')
@php
$event_options = \App\Models\EventOption::query()
->whereIn('event_id', $term->events->pluck('id'))
->orderBy('start')
->get()
@endphp
@foreach($event_options as $event_option)
{{ $event_option->full_name }} {{ $event_option->start->year }}
{{ $event_option->getStartEndLabel() }}
@endforeach