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

Your Path to Certification Starts Here: IRCLASS Events

Explore upcoming online and offline events designed to elevate your expertise—whether you're aiming to become a Lead Auditor, Internal Auditor, or expand your industry knowledge.

@if($upcomingEvents->count() > 0)
Explore Upcoming Events & Learning Opportunities

IRCLASS Training Events –
Engage, Elevate & Excel

@php $initial = 6; @endphp @foreach($upcomingEvents as $index => $event) @php // FIXED: Proper date-time parsing without concatenation errors $dateTimeText = ''; if ($event->date) { $startDate = \Carbon\Carbon::parse($event->date); if ($event->time) { // Parse date and time separately, then combine $startTime = \Carbon\Carbon::parse($event->time); $combinedDateTime = $startDate ->copy() ->setTime($startTime->hour, $startTime->minute, $startTime->second); $dateTimeText = $combinedDateTime->timezone('Asia/Kolkata')->format('M d, Y - h:i A') . ' IST'; } else { // Only date available $dateTimeText = $startDate->timezone('Asia/Kolkata')->format('M d, Y - h:i A') . ' IST'; } } // Values only - no labels as per static markup $location = $event->location ?: $event->title; $duration = $event->duration ?: '30 Minutes'; @endphp
@if($event->image_url) {{ $event->title }} @endif

{{ $event->mode }}

{{ $event->title }}
icon-clock {{ $dateTimeText }} icon-calender {{ $location }} , Duration: {{ $duration }}
@endforeach
@if (($upcomingEvents->count() ?? count($upcomingEvents ?? [])) > $initial) @endif
@endif @if($pastEvents->count() > 0)
@endif

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
@include('components.request-quote-button')
{{-- Include enquiry form modal for Events page --}} @include('components.enquiry-form-wrapper', ['pageSource' => 'events', 'formType' => 'enquiry']) @include('website.partials.include_js') @endsection