Virtual Trade Shows / Conferences
@isset($data['date'])
{{-- {{ $data['carbon'] }} --}}
@foreach ($data['date'] as $year => $yearRows)
Shows for {{$year}}
@foreach($yearRows as $month => $monthRows)
{{-- {{$monthsArray[$month]}} --}}
@foreach($monthRows as $day => $rows)
{{-- {{$day}} --}}
@foreach($rows as $show)
@php
$image = '/up_data/shows/'.$show->image_thumbnail;
$link = '';
if($show->link != '')
$link = $show->link;
@endphp
@if($show->image_thumbnail != '')
@else
{{ $show->start_date.' / '.$show->end_date }}
{{ $show->name }}
@endif
@if($show->location != '')
@endif
@if($show->details_link != '' || trim(strip_tags($show->details)) != null)
@php
if($show->details_link != '')
$link_d = $show->details_link;
else
$link_d = 'trade-shows/'.$show->id.'-'.str_slug($show->name);
@endphp
Read More
@endif
Visit Now
@endforeach
@endforeach
@endforeach
@endforeach
@endisset
{{-- @if($data['shows'])
@foreach($data['shows'] as $show)
@php
//$image = '/up_data/flyers/images/'.$post->image;
//$link = '/up_data/flyers/pdfs/'.$post->pdf_file;
@endphp
{{ $show->dates }}
{{ $show->name }}
@if($show->link != '')
@endif
@if($show->booth != '')
Booth # {{ $show->booth }}
@endif
@if($show->location != '')
{{ $show->location }}
@endif
@if($show->details_link != '' || trim(strip_tags($show->details)) != null)
@php
if($show->details_link != '')
$link = $show->details_link;
else
$link = 'trade-shows/'.$show->id.'_'.str_slug($show->name);
@endphp
Read Details
@endif
@endforeach
@else
Sorry!, no trade shows found.
@endif --}}