@if ($posts->isNotEmpty()) @foreach ($posts as $post)
{{ $post->name }}

{{ $post->name }}

{{ $post->created_at->format('M d, Y') }}{{ $post->author->name }} - {{ __('Categories') }}: @foreach ($post->categories as $category) {{ $category->name }} @if (!$loop->last) , @endif @endforeach

{{ $post->description }}

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