@php
$learningMaterialsExtraDescription = !empty($event->extraDescriptions) ? $event->extraDescriptions->where('type','learning_materials') : null;
$companyLogosExtraDescription = !empty($event->extraDescriptions) ? $event->extraDescriptions->where('type','company_logos') : null;
$requirementsExtraDescription = !empty($event->extraDescriptions) ? $event->extraDescriptions->where('type','requirements') : null;
@endphp
{{-- What will you learn --}}
@if(!empty($learningMaterialsExtraDescription) and count($learningMaterialsExtraDescription))
@endif
{{-- About event --}}
@if($event->description)
{{ trans('update.about_this_event') }}
{!! nl2br($event->description) !!}
@endif
{{-- Tickets --}}
@if(!empty($event->tickets) and count($event->tickets))
@php
$ticketsCardStyle = getEventsSettings("ticket_card_style") ?? "grid";
@endphp
{{ trans('public.tickets') }}
@if($ticketsCardStyle == "lists")
@foreach($event->tickets as $eventTicketRow)
@include('design_1.web.events.show.includes.ticket_full_card', ['eventTicket' => $eventTicketRow])
@endforeach
@endif
@foreach($event->tickets as $eventTicketRow)
@include('design_1.web.events.show.includes.ticket_grid_card', ['eventTicket' => $eventTicketRow])
@endforeach
@endif
{{-- Speakers --}}
@if(!empty($event->speakers) and count($event->speakers))
{{ trans('update.speakers') }}
@foreach($event->speakers as $eventSpeakerRow)
@include('design_1.web.events.show.includes.speaker_card', ['eventSpeaker' => $eventSpeakerRow])
@endforeach
@endif
{{-- Event Location --}}
@if(!empty($event->specificLocation) and $event->type == "in_person")
{{ trans('update.event_location') }}
@if(!empty($event->specificLocation->geo_center))
@endif
{{ trans('update.location') }}
{{ $event->specificLocation->getFullAddress() }}
@endif
{{-- Requirements --}}
@if(!empty($requirementsExtraDescription) and count($requirementsExtraDescription))
@endif
{{-- Trusted Companies --}}
@if(!empty($companyLogosExtraDescription) and count($companyLogosExtraDescription))
{{ trans('update.trusted_companies') }}
+3200 Companies trusted our events for their staff tutoring
@foreach($companyLogosExtraDescription as $companyLogo)
@endforeach
@endif
{{-- event FAQ --}}
@if(!empty($event->faqs) and $event->faqs->count() > 0)
{{ trans('public.faq') }}
{{ trans('update.check_frequently_asked_questions_about_this_event') }}
@foreach($event->faqs as $faq)
{{ clean($faq->title,'title') }}
{{ clean($faq->answer,'answer') }}
@endforeach
@endif
{{-- event Prerequisites --}}
@if(!empty($event->prerequisites) and $event->prerequisites->count() > 0)
{{ trans('public.prerequisites') }}
{{ trans('update.we_suggest_passing_prerequisites_for_more_efficient_learning') }}
@foreach($event->prerequisites as $prerequisite)
@if(!empty($prerequisite->course))
@include('design_1.web.courses.show.includes.prerequisite',['courseItem' => $prerequisite->course])
@endif
@endforeach
@endif
{{-- End bg-white --}}
{{-- About Instructor --}}
{{ trans('update.related_courses') }}
{{ trans('update.explore_courses_we_published_currently_and_enjoy_updated_information') }}
@include('design_1.web.courses.components.cards.grids.index',['courses' => $relatedCourses, 'gridCardClassName' => "col-12 col-md-6 col-lg-4 mt-16"])
@endif
@endif