@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')}} {{__('Admin')}} | {{$postDate}}
{!! (strlen(strip_tags(convertUtf8($post->description))) > 100) ? substr(strip_tags(convertUtf8($post->description)), 0, 100) . '...' : strip_tags(convertUtf8($post->description)) !!}
{{__('Read More')}}