@lang('frontend.related_articles')

@foreach($relatedPosts as $relatedPost)
{!! getMediaImg($relatedPost->media, '200x200', htmlspecialchars($relatedPost->title)) !!}

@title($relatedPost->title)

@foreach($relatedPost->authors as $i => $author) {{ $author->title . ($i + 1 < $relatedPost->authors->count() ? ', ' : '') }} @endforeach
@endforeach