@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))

{{ trans('update.what_you_will_learn') }}

@foreach($learningMaterialsExtraDescription as $learningMaterial)
{{ $learningMaterial->value }}
@endforeach
@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))

{{ trans('update.requirements') }}

@foreach($requirementsExtraDescription as $requirementExtraDescription)
{{ $requirementExtraDescription->value }}
@endforeach
{{ trans('update.requirements') }}
@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)
{{ trans('update.company_logos') }}
@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 --}}
{{ $event->creator->full_name }}
{{ $event->creator->full_name }}
@php $eventInstructorRates = $event->creator->rates(true); @endphp @include('design_1.web.components.rate', [ 'rate' => $eventInstructorRates['rate'], 'rateCount' => $eventInstructorRates['count'], 'rateClassName' => 'mt-4', ])
{{ $event->creator->getTeacherCoursesCount() }} {{ trans('update.courses') }}
{{ $event->creator->getTeacherStudentsCount() }} {{ trans('quiz.students') }}
{!! truncate($event->creator->about, 716) !!}
{{ $event->creator->full_name }} @if($event->creator->hasMeeting()) {{ trans('public.book_a_meeting') }} @endif
{{-- Recent Reviews --}} @if(!empty($recentReviews) and count($recentReviews))

{{ trans('update.recent_reviews') }}

{{ trans('update.check_what_students_say_about_the_event') }}

{{ trans('update.more_reviews') }}
@foreach($recentReviews as $recentReview)
{{ $recentReview->creator->full_name }}
{{ $recentReview->creator->full_name }} {{ dateTimeFormat($recentReview->created_at, 'j M Y') }}
{!! clean(truncate($recentReview->description, 150), 'description') !!}
@include('design_1.web.components.rate', [ 'rate' => $recentReview->rates, 'rateClassName' => '', ])
@endforeach
@endif {{-- Related Courses --}} @if(!empty($event->relatedCourses) and $event->relatedCourses->count() > 0) @php $relatedCourses = []; foreach($event->relatedCourses as $relatedCourse) { if(!empty($relatedCourse->course)) { $relatedCourses[] = $relatedCourse->course; } } @endphp @if(count($relatedCourses))

{{ 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