@extends('frontend::layouts.master') @section('title') {{ $blog->getSeoMeta('title') ?? $blog->title }} @endsection @section('content')
@if ($blog?->categories && $blog?->categories->count() > 0)
@foreach ($blog?->categories as $category) @endforeach
@endif

{{ $blog?->title }}

{{ $blog?->title }} @if ($blog->getMeta('is_video_blog') == 1 && $blog->getMeta('video_url')) @endif
{!! $blog?->excerpt !!}
{!! $blog?->content !!}
@if ($blog->tags->isNotEmpty()) @endif
{{ __('frontend::messages.Share') }}:
@include('frontend::blog.include.blog_author_info') @include('frontend::blog.include.prev_next_post') @include('frontend::blog.include.blog_comment_list') @include('frontend::blog.include.blog_comment_submit')
@include('frontend::blog.include.blog_sidebar')
@endsection @push('style') @endpush @push('script') @endpush