@foreach($listing->items() as $k => $n )
...
{{isset($n->title) && $n->title ? $n->title : ''}}

{!! isset($n->description) && $n->description ? strip_tags($n->description) : '' !!}

{{isset($n->date) && $n->date ? date('M d, Y', strtotime($n->date)) : ''}}
@endforeach