@php
if (!empty($currentLang)) {
$postDate = \Carbon\Carbon::parse($post->created_at)->locale("$currentLang->code");
} else {
$postDate = \Carbon\Carbon::parse($post->created_at)->locale("en");
}
$postDate = $postDate->translatedFormat('jS F, Y');
@endphp
{{__('By')}} {{$post->category->feed_name}} | {{$postDate}}
{!! (strlen(strip_tags($post->description)) > 100) ? mb_substr(strip_tags($post->description), 0, 100, 'utf-8') . '...' : strip_tags($post->description) !!}
{{__('Read More')}}