@extends('website.layout.app') @section('title', __('Badar Expo Solutions')) @push('styles') @endpush @section('content') Badar Expo event details Home Events {{ $event->name }} 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) @php $programDate = \Carbon\Carbon::parse($programs[0]->date)->format('d M Y'); @endphp Day {{ $day }} {{ $programDate }} @endforeach @foreach($groupedPrograms as $day => $programs) @foreach(collect($programs)->sortBy(fn($p) => \Carbon\Carbon::parse($p->start_time)) as $program) {{ $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) {{ $item->name }} @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 All Exhibitors @foreach($halls as $hallName => $hallExhibitors) Hall {{ $hallName }} @endforeach @foreach($Exhibitors as $item) {{ $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 }} Hall: {{ $item->hall->name ?? 'NA' }} | Booth: {{ $item->booth_number ?? 'NA' }} @endforeach @endforeach @endif Event Location {{ strlen($event->address) > 15 ? substr($event->address, 0, 15) . '...' : $event->address ?? 'NA' }} @if ($event->city && $event->country) {{ $event->city.', '.$event->country }} @endif {{ $event->address ?? 'NA' }} {{ $event->city ?? 'NA'}} {{$event->start_time->format('l, F d, Y')}} From {{ $event->start_time->format('h:i A') }} to {{ $event->end_time->format('h:i A') }} (EST) Book Slot Contact information Badar Expo staff https://www.facebook.com/badarexpopk/ https://x.com/badarexposol http://www.BadarExpo.com CONTACT US NOW @if ($faqs->count() > 0) Event FAQ @foreach($faqs as $index => $faq) {{ substr($faq->question,0,30) }} {!! $faq->answer !!} @endforeach @endif @if ($galleryItems->count() > 0) Event Gallery @foreach ($galleryItems as $item) @endforeach @endif @endsection @push('scripts') @endpush
{!! $event->description !!}
{!! $program->description !!}
Hall: {{ $item->hall->name ?? 'NA' }} | Booth: {{ $item->booth_number ?? 'NA' }}