Virtual Trade Shows / Conferences
@isset($data['date'])
@foreach ($data['date'] as $year => $yearRows)
@foreach($yearRows as $month => $monthRows)
@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/shows/'.$show->image_thumbnail;
$link = '';
if($show->link != '')
$link = $show->link;
@endphp
@if($show->image_thumbnail != '')
@else
{{ $show->dates }}
{{ $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
@else
Sorry!, no trade shows found.
@endif --}}