@extends('website.layout.app') @section('title', __('Badar Expo Solutions')) @push('styles') @endpush @section('content')
Featured Event

{{ $event->name }}

  • Event Date

    {{ $event->start_time->format('M d, Y') }}

  • Event Time

    {{$event->start_time->format('H:iA')}} ~ {{$event->end_time->format('H:iA')}}

  • Event Location

    {{ strlen($event->address) > 10 ? substr($event->address, 0, 10) . '...' : $event->address }}

{!! $event->description !!}

@if($groupedPrograms != [])

event schedule

@foreach($groupedPrograms as $day => $programs)
@foreach(collect($programs)->sortBy(fn($p) => \Carbon\Carbon::parse($p->start_time)) as $program)
Image_not_found

{{ $program->name }}

{!! $program->description !!}

  • Event Time

    {{ \Carbon\Carbon::parse($program->start_time)->format('h:i A') }}~{{ \Carbon\Carbon::parse($program->end_time)->format('h:i A') }}

@endforeach
@endforeach
@endif
@if($assigned_exhibitors->count() > 0)

Our Sponsors

@foreach ($assigned_exhibitors as $item) @if ($item?->exhibitor?->image) @endif @endforeach
@endif @if($keyhighlights->count() > 0)

Key Highlights

@foreach($keyhighlights as $item)
{{ $item->value }}
{{ $item->name ?? 'NA' }}
@endforeach
@endif @if ($Exhibitors->count() > 0)

Meet Our Exhibitors

@php $halls = $Exhibitors->groupBy('hall.name'); // Group by hall name @endphp
@foreach($Exhibitors as $item)
{{ $item?->exhibitor?->name ?? 'NA' }} Logo

{{ $item?->exhibitor?->name }}

Hall: {{ $item->hall->name ?? 'NA' }} | Booth: {{ $item->booth_number ?? 'NA' }}

@endforeach
@foreach($halls as $hallName => $hallExhibitors)
@foreach($hallExhibitors as $item)
{{ $item?->exhibitor?->name ?? 'NA' }} Logo

{{ $item?->exhibitor?->name }}

Hall: {{ $item->hall->name ?? 'NA' }} | Booth: {{ $item->booth_number ?? 'NA' }}

@endforeach
@endforeach
@endif
@endsection @push('scripts') @endpush