@foreach($listing->items() as $k => $v )
@if(isset($v->file_type) && $v->file_type == 'image' && $v->image && file_exists(public_path($v->image))) ... @elseif(isset($v->file_type) && $v->file_type == 'video' && $v->video)
@else {{-- --}} @endif
{{isset($v->title) && $v->title ? $v->title : ''}}

{!! isset($v->description) && $v->description ? strip_tags(Str::limit($v->description,215)) : '' !!}

* {{isset($v->date) && $v->date ? date('M d, Y', strtotime($v->date)) : ''}}
{{isset($v->time) && $v->time ? Carbon::createFromFormat('H:i:s',$v->time)->format('h:i A') : ''}}
{{isset($v->location) && $v->location ? $v->location : ''}}
@endforeach