@extends('admin.layouts.app') @section('content')
{!! $event->name !!}
{!! $event->slug !!}
{!! $event->categories_name ?? "" !!}
{!! $event->video_link ?? "" !!}
{!! $event->chat_embed_url ?? "" !!}
{{ $event->elexio_form_embed_code ?? "" }}
{{ displayElexioGroupIds($event->elexio_group_id) ?? "" }}
{{ $event->eventbrite_id ?? "" }}
{!! $event->description ?? "" !!}
{!! $event->type ?? "" !!}
@if(in_array("Online",$event->typearr))
@if(isset($event->content->name)) {!! $event->content->name !!} @endif
@endif @if(in_array("In Person",$event->typearr))
{!! $event->location ?? "" !!}
@endif
@if($event->start_date_time) {!! convertUtcToLocal($event->start_date_time,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!} @endif
@if($event->end_date_time) {!! convertUtcToLocal($event->end_date_time,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!} @endif
{!! $event->notes ?? "" !!}
@if($event->video_link)
@endif
@if($event->products()->count() > 0)
@foreach($event->products as $products) @php $rand = rand(999999,1); @endphp

{!! $products->name !!}

{!! $products->price !!}

@endforeach
@endif
@if($event->is_hide_end_date_time) Yes @else No @endif
@if($event->is_private) Yes @else No @endif
@if($event->is_active) Active @else Inactive @endif
{!! convertUtcToLocal($event->created_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$event->createdBy->name !!}
@if($event->updated_by != "")
{!! convertUtcToLocal($event->updated_at,config('constants.DISPLAY_DATE_TIME_ZONE_FORMAT')) !!}
{!! @$event->updatedBy->name !!}
@endif
@endsection