{{ __('Latest Blog') }}

@if (count($latestBlogInfos) == 0)
{{ __('No Blog Found') . '!' }}
@else
@foreach ($latestBlogInfos as $latestBlogInfo)
image
{{ strlen($latestBlogInfo->title) > 30 ? mb_substr($latestBlogInfo->title, 0, 30, 'UTF-8') . '...' : $latestBlogInfo->title }}
{{ date_format($latestBlogInfo->created_at, 'M d, Y') }}
@endforeach
@endif