{{ $blog?->title }}
{!! clean($blog?->description) !!}
{{ __('Popular Tags') }}
@foreach (json_decode($blog?->tags) as $tag)
{{ $tag?->value }}
@endforeach
{{ $blog?->author?->name }}
{{ $blog?->author?->about_me }}
{{ __('Comments') }} {{ $blog?->total_comment == 0 ? '0' : str_pad($blog?->total_comment, 2, '0', STR_PAD_LEFT) }}
@foreach ($blog?->comments as $blog_comment){{ $blog_comment?->name }}
{{ $blog_comment?->created_at?->format('F d, Y') }}
{{ $blog_comment?->comment }}
{{ __('Leave a Comment') }}
{{ __(' Your email address will not be published. Required fields are marked *') }}