@extends('layouts.website') @section('content')

@if ($selectedEvent) {{ $selectedEvent->title }} @else Your Path to Certification Starts Here: IRCLASS Events @endif

@if ($selectedEvent) @php $eventDateTime = ''; if ($selectedEvent->date) { $startDate = \Carbon\Carbon::parse($selectedEvent->date); if ($selectedEvent->time) { $startTime = \Carbon\Carbon::parse($selectedEvent->time); $combinedDateTime = $startDate ->copy() ->setTime( $startTime->hour, $startTime->minute, $startTime->second, ); $eventDateTime = $combinedDateTime ->timezone('Asia/Kolkata') ->format('M d, Y - h:i A') . ' IST'; } else { $eventDateTime = $startDate ->timezone('Asia/Kolkata') ->format('M d, Y - h:i A') . ' IST'; } } @endphp

Date: {{ $eventDateTime }}

{{ $selectedEvent->category ?? 'Event Management' }}, Duration: {{ $selectedEvent->duration ?? '30 Minutes' }}

@else

Date: Coming Soon

Event Management, Duration: 30 Minutes

@endif

line-img
Overview

About the
Event

Explore the inner dimensions of ethics, purpose, and leadership in this insightful 30-minute learning session.
"Holiest Morality: Deriving the Self to its Pinnacle Without Contradiction" dives into how morality can shape decision-making in event and organizational management, focusing on staying value-driven even in the face of practical contradictions.
This event will also introduce foundational practices in Basic Event Management, offering tips to structure, lead, and reflect with integrity. Whether you're new to event planning or aiming to align professional roles with deeper values, this session provides practical takeaways and food for thought.
@if ($selectedEvent && $selectedEvent->speakers && $selectedEvent->speakers->count() > 0)
line-img
Meet Our Speakers
@foreach ($selectedEvent->speakers as $speaker)
@if ($speaker->image && \Storage::disk('public')->exists($speaker->image)) {{ $speaker->name }} @else {{ $speaker->name }} @endif

{{ $speaker->prefix }} {{ $speaker->name }} @if ($speaker->linkedin) in @endif

{{ $speaker->designation }}
{{ $speaker->description }}
@endforeach
@endif

Related Events

@forelse($relatedEvents as $event)
{{ $event->mode ?? 'Online' }}
@if ($event->image) {{ $event->title }} @endif
@php $upcomingEventDate = $event->date ? \Carbon\Carbon::parse($event->date)->format('M d, Y') : ''; @endphp {{ $upcomingEventDate }}
{{ $event->title }}

@php $upcomingEventTime = $event->date ? \Carbon\Carbon::parse($event->date)->format('M d, Y') : ''; @endphp {{ $upcomingEventTime }}

@if ($event->location)

{{ $event->location }}

@endif

{{ $event->duration ?? 'Basic Event Management' }}.

@empty
Online
No Related Events
No related events available at the moment

Check back later for updates

@endforelse

Let's get you certified-Start your journey today!

Connect with our experts for a seamless and hassle-free certification process.

Get Certified
background-img
man-img
button
@include('website.partials.include_js') @endsection