@if ($posts->count() > 0) @foreach ($posts as $post)
{{ $post->name }}
{{ $post->name }}
  • {{ $post->created_at->translatedFormat('M d, Y') }}
  • {{ number_format($post->views) }} {{ __('Views') }}

{{ Str::limit($post->description, 110) }}

{{ __('Read More') }}
@endforeach
{!! $posts->appends(request()->query())->links() !!}
@endif