@extends('frontend.template-1.partials.master') @section('content') @include('frontend.template-1.breadcrumb.breadcrumb')
image image
@if (fileExists('uploads/blog/', $blog_details->image) != false && $blog_details->image != null) image @else image @endif

{{ $blog_details->getTranslation('title') }}

@php $description= prelaceScript(html_entity_decode($blog_details->getTranslation('description'))) @endphp {!! clean($description) !!}
@php $tags = explode(',', $blog_details->tags); @endphp
@if ($tags)
{{ translate('Post Tag') }}:
@endif

{{ $comments->count() > 1 ? 'Comments' : 'Comment' }} ({{ $comments->count() < 9 ? '0' . $comments->count() : $comments->count() }})

{{ translate('Leave A Comment') }}

{{ translate('Your email address will not be published') }}.

@csrf
@if (Auth::guest())
@endif
@if ($categories->count() > 0)
@endif
@if ($randomBlog) @endif
@include('frontend.template-1.partials.reply-modal') @endsection