@foreach ($posts as $post) @if ($loop->first)
{!! RvMedia::image($post->image, $post->name, 'medium') !!}
{!! BaseHelper::clean($post->name) !!}

{{ $post->created_at->translatedFormat('M d, Y') }} @if ($post->author) {{ __('by') }} {{ $post->author->name }} @endif

@endif @endforeach @if ($posts->count() > 1)
@foreach ($posts as $post) @if (!$loop->first)
{!! RvMedia::image($post->image, $post->name, 'small') !!}
{!! BaseHelper::clean($post->name) !!}

{{ $post->created_at->translatedFormat('M d, Y') }} @if ($post->author) {{ __('by') }} {{ $post->author->name }} @endif

@endif @endforeach
@endif
{!! $posts->withQueryString()->links() !!}