@if($item->agendaSpeakers->count() > 0)
@if($item->speakers_label)
{{ $item->speakers_label }}
@endif
@if($item->agendaSpeakers)
@foreach($item->agendaSpeakers as $i => $speakers)
@if($speakers->image)
{!! getMediaImg($speakers->image, '120x120', htmlspecialchars($speakers->title)) !!}
@endif
@if($speakers->title)
{{ $speakers->title }}
@endif
@if($speakers->subtitle)
{{ $speakers->subtitle }}
@endif
@endforeach
@endif