@extends('page.layouts.main')
@use('Carbon\Carbon')
@use('Illuminate\Support\Str')
@section('content')
{{ $event->description_long ?? $event->description }}
Explore sessions, panels, and networking opportunities at {{ $event->title }}. Meet the influential leaders and innovators shaping the future of aviation. {{ $speaker->role }} {{ $speaker->organization }} Speakers will be announced soon. Stay tuned! {{ Str::limit($doc->description, 60) }}
{{ $event->title }}
@if(!empty($event->video))
No Upcoming Event Found
@endif
{{ $event->title }}
Event Highlights
@php
$details = [
['icon' => 'calendar-days', 'label' => 'Date', 'value' => Carbon::parse($event->start_time)->format('j F Y') . (Carbon::parse($event->start_time)->format('Y-m-d') !== Carbon::parse($event->end_time)->format('Y-m-d') ? ' – ' . Carbon::parse($event->end_time)->format('j F Y') : '')],
['icon' => 'clock', 'label' => 'Time', 'value' => Carbon::parse($event->start_time)->format('H:i') . ' – ' . Carbon::parse($event->end_time)->format('H:i')],
['icon' => 'map-pin', 'label' => 'Venue', 'value' => $event->location],
['icon' => 'building-office', 'label' => 'Address', 'value' => $event->address],
['icon' => 'building-library', 'label' => 'City', 'value' => $event->city],
['icon' => 'map', 'label' => 'Province', 'value' => $event->province],
['icon' => 'globe-asia-australia', 'label' => 'Country', 'value' => $event->country],
];
$icons = [
'calendar-days' => '',
'clock' => '',
'map-pin' => '',
'building-office' => '',
'building-library' => '',
'map' => '',
'globe-asia-australia' => '',
];
@endphp
@foreach($details as $detail)
Event Agenda
Keynote Speakers
{{ $speaker->name }}
Sponsors & Supporting Organisations
{{-- No text --}}
@if ($event->is_active)
Exhibition Booth
@else
Documentation
@endif