@extends('layouts.site') @section('title', $event->title.' — Past Summit Details') @section('meta_description', $event->meta_description ?: 'Relive the highlights of '.$event->title.'.') @section('content') {{-- Hero --}}
Past Summit

{{ $event->title }}

@if($event->theme)

"{{ $event->theme }}"

@endif
@if($event->starts_at)calendar_today{{ $event->starts_at->format('M d, Y') }}@endif @if($event->city)location_on{{ $event->city }}@endif @if($event->venue)venue{{ $event->venue }}@endif
photo_library View Gallery @if($event->speakers->isNotEmpty())group Explore Speakers@endif
@if($event->cardImageUrl) {{ $event->title }} @else
event
@endif
{{-- Event Overview --}} @if($event->description)

Event Overview

{!! $event->description !!}
@endif {{-- Key Numbers --}}

Key Numbers

@php $stats = \App\Models\Stat::active()->get() @endphp @forelse($stats as $s)
{{ $s->value }}{{ $s->suffix }}
{{ $s->label }}
@empty
{{ $event->speakers->count() }}+
Speakers
900+
Attendees
10+
Sessions
30+
Institutions
@endforelse
{{-- Event Highlights --}}

Event Highlights

@foreach([['mic','Keynote Sessions','Major keynote addresses and summit moments by distinguished speakers and thought leaders.'],['forum','Panel Discussions','Expert panels featuring cross-disciplinary dialogue and audience conversations.'],['diversity_3','Audience Engagement','Interactive Q&A sessions, reflections, and networking opportunities.']] as $h)
{{ $h[0] }}

{{ $h[1] }}

{{ $h[2] }}

@endforeach
{{-- Featured Speakers --}} @if($event->speakers->isNotEmpty())

Featured Speakers

@foreach($event->speakers as $sp) @if($sp->photo){{ $sp->name }}@else
person
@endif

{{ $sp->name }}

@if($sp->country)

{{ $sp->country }}

@endif
@endforeach
@endif {{-- Gallery --}}

Event Gallery

@for($i = 0; $i < 3; $i++)
photo_library

View Photos

@endfor
View All Gallery Photos arrow_forward
{{-- Media Coverage --}}

Media Coverage

@php $coverage = glob(public_path('images/media-coverage/m*.jpeg')); $coverage = array_slice($coverage, 0, 10) @endphp @foreach($coverage as $idx => $path)
@php $name = basename($path) @endphp Press
@endforeach
View Full Coverage arrow_forward
{{-- Timetable --}} @if($event->schedule)

Event Schedule

@foreach($event->schedule as $idx => $slot)
{{ $slot['time'] ?? '' }}

{{ $slot['title'] ?? '' }}

@if(!empty($slot['speaker']))

{{ $slot['speaker'] }}

@endif
{{ $loop->even ? 'Main Hall' : 'Breakout Room' }}
@endforeach
@endif {{-- Resources --}}

Downloadable Resources

@foreach([['description','Event Report','Comprehensive report of the summit proceedings and outcomes.'],['image','Photo Archive','High-resolution images from the event.'],['menu_book','Research Papers','Selected papers and abstracts from the summit.']] as $r)
{{ $r[0] }}

{{ $r[1] }}

{{ $r[2] }}

Coming Soon arrow_forward
@endforeach
{{-- CTA --}}
campaign

Media Inquiries

For press passes, interview requests, or media collaboration, contact our communications team.

@endsection