{{$event->first()->title}}

A Celebration of {{$event->first()->event_type}}

{{$event->first()->date}} | {{$event->first()->location}}

@php $highlights=DB::table('event_highlights')->where('eventId','=',$event->first()->id)->get(); @endphp

Event Details

{{$event->first()->description}}

Festival Highlights:

@for($i = 0; $i < count($highlights); $i+=2)

{{ $highlights[$i]->highlights_title }}

{{ $highlights[$i]->highlights_description }}

@if(isset($highlights[$i + 1]))

{{ $highlights[$i + 1]->highlights_title }}

{{ $highlights[$i + 1]->highlights_description }}

@endif @endfor
@if($event->first()->event_mode == 'ticketed')

Reserve Your Seat

@csrf
@endif