@extends('layout') @section('title') {{ $blog->seo_title }} @php $tags = ''; if($blog->tags){ foreach (json_decode($blog->tags) as $blog_tag) { $tags .= $blog_tag->value.', '; } } @endphp @endsection @section('body-content')

{{ __('translate.Blog Details') }}

{{ $blog->title }}

{!! clean($blog->description) !!}
@if ($blog->tags)
{{ __('translate.Tag') }}:
@endif
thumb
{{ $blog?->author?->name }}
{{ $blog?->author?->designation }}

{{ $blog?->author?->about_me }}

{{ $blog->total_comment }} {{ __('translate.Comments') }}

@foreach ($blog_comments as $blog_comment)
img

{{ html_decode($blog_comment->name) }}

{{ $blog_comment->created_at->format('d M Y') }}

{{ html_decode($blog_comment->comment) }}

@endforeach

{{ __('translate.Drop your comment') }}

@csrf
@if($google_recaptcha->status==1)
@endif

{{ __('translate.Search') }}

{{ __('translate.Popular Blog') }}

@foreach ($popular_blogs as $popular_blog)
img
{{ $popular_blog->title }}
{{ $popular_blog->created_at->format('d M, Y') }}
@endforeach

{{ __('translate.Categories') }}

{{ __('translate.Follow Us') }}

@endsection @push('js_section') @endpush