@php $pageLink = getThemeOption('page_setting') ?? []; $pageLink = $pageLink['job_list_url'] ?? 'javascript:void(0)'; $countBlogComment = CountBlogComment($blog->id) ?? []; $breadcrumbOption = getThemeOption('breadcrumb') ?? []; $breadcrumbImg = $breadcrumbOption['breadcrumb_img'] ?? null; $breadcrumbColor = $breadcrumbOption['breadcrumb_color'] ?? '#f1f1f1'; @endphp @extends('front.layouts.master') @section('title', $blog->getTranslation('blog_title')) @section('content')
@if (fileExists('blog', $blog->blog_thumbnail) == true && $blog->blog_thumbnail !== '') blog-thumbnail @else blog-n-thumbnail @endif

{{ $blog->getTranslation('blog_title') }}

{!! clean($blog->getTranslation('blog_details')) !!}
@if ($previousBlogId !== null) {{ translate('Prev') }} @else {{ translate('Prev') }} @endif
@if ($nextBlogId !== null) {{ translate('Next') }} @else {{ translate('Next') }} @endif
@if ($countBlogComment > 0)

{{ translate('Comments') }} ({{ $countBlogComment < 10 ? '0' . $countBlogComment : $countBlogComment }})

@endif

{{ translate('Leave Your Comment') }}:

@csrf
@include('front.pages.blog.sidebar-banner')
@endsection