@extends('front.layouts.app') @section('content')
{!! $event->title !!}
@foreach($event->typearr as $type)
{!! $type !!}
@endforeach

{!! $event->name !!}

{!! $event->description !!}

@if($event->is_recurring == "1" && !$event->parent_id)

My Notes

@foreach($event->recurringevents as $recurringevents) @if(isset(auth('web')->user()->eventNote($recurringevents->id)->notes))
{!! convertUtcToLocal(auth('web')->user()->eventNote($recurringevents->id)->created_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! auth('web')->user()->eventNote($recurringevents->id)->notes !!}
@endif @endforeach @else @if(isset(auth('web')->user()->eventNote($event->id)->notes))

My Notes

{!! auth('web')->user()->eventNote($event->id)->notes !!} @endif @endif
Details
@if(isset($data['recurring_at']))
Recurring At

{!! $data['recurring_at'] !!}

@endif @if(isset($data['recurrence_at']) && @count(@$data['recurrence_at']) > 0)
Recurrence At

@foreach($data['recurrence_at'] as $recurrence_at) {!! $recurrence_at !!} @endforeach

@endif @if($event->start_date_time && $event->slug != "the-compassion-journey")
Date & Time

{!! displayStartEndDateTime($event) !!}

@endif @if(in_array("Online",$event->typearr) && in_array("In Person",$event->typearr))
Location

Online or {!! $event->location ?? config('app.name') !!}

@elseif(in_array("Online",$event->typearr))
Location

Online

@elseif($event->location)
Location

{!! $event->location !!}

@endif @if($event->categories_name)
Categories

{!! $event->categories_name !!}

@endif
@if($event->eventbrite_id) @endif
@if($event->products()->count() > 0)
{!! @$page->metaArr()['product_subtitle'] !!}

{!! @$page->metaArr()['product_title'] !!}

{!! @$page->metaArr()['product_description'] !!}

@foreach($event->products as $products)
product-image

{!! $products->name !!}

{!! $products->price !!}
arrow-right-blue
@endforeach @if($event->products()->count() > 4)
@endif
@endif
@endsection @section('js') @if($event->eventbrite_id) @endif @endsection