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

{{ $post->name }}

{{ $post->created_at->translatedFormat('d M y') }} {{ __(':number mins read', ['number' => number_format(strlen(strip_tags($post->content)) / 300)]) }}

{!! BaseHelper::clean(Str::limit($post->description, 120)) !!}

@endforeach
@endif