{{ $blog_details->author_name }}
@php
$tags = json_decode($blog_details->keywords, true);
if (is_array($tags) && count($tags) > 0) {
$tags = array_column($tags, 'value');
}
@endphp
{{ $tags ? implode(', ', $tags) : '' }}
{{ $total_comments }}
{{ date('d M, Y', strtotime($blog_details->created_at)) }}
{{ $total_comments }}
{{ get_phrase('Post A Comment') }}
@endisset @foreach ($blog_comments as $comment) @include('frontend.default.blog.comment') @endforeach