@extends('frontend.layout') @section('pageHeading') @if (!empty($pageHeading)) {{ $pageHeading->blog_details_page_title ?? 'Blog Details' }} @endif @endsection @section('metaKeywords') {{ $details->meta_keywords }} @endsection @section('metaDescription') {{ $details->meta_description }} @endsection @section('content') @includeIf('frontend.partials.breadcrumb', ['breadcrumb' => $bgImg->breadcrumb, 'title' => $pageHeading->blog_details_page_title ?? 'Blog Details'])
image
{{ $details->categoryName }}

{{ $details->title }}

  • {{ date_format($details->created_at, 'M d, Y') }}
{!! replaceBaseUrl($details->content, 'summernote') !!}

{{ __('Share') }}

@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif

{{ __('Related Blog') }}

@if (count($relatedBlogs) == 0)
{{ __('No Related Blog Found') . '!' }}
@else
@foreach ($relatedBlogs as $relatedBlog)
@endforeach
@endif
@if (!empty(showAd(3)))
{!! showAd(3) !!}
@endif @if ($disqusInfo->disqus_status == 1)
@endif
@includeIf('frontend.journal.side-bar')
@endsection @section('script') @endsection