@foreach ($posts as $post) @if ($loop->first)
{{ $post->name }}
{{ $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)
{{ $post->name }}
{{ $post->name }}

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

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