@if($events->isNotEmpty())
@include('front.new.oric.partials.section-heading', ['title' => 'Upcoming Events'])
@foreach($events as $event) @php $type = strtolower(optional($event->type)->name); $icon = $eventIcons[$type] ?? 'ri-calendar-event-line'; @endphp @endforeach
# DATE LEVEL TOPIC RESOURCE PERSON(s) DETAILS
{{ $loop->iteration }} {{ \Carbon\Carbon::parse($event->e_date)->format('d-M-Y') }} {{ optional($event->level)->name ?? '-' }} {{ $event->title }} {{ $event->resource_person }} @if($event->slug) @else @endif
@endif