@section('title') {{ $blog->title }} @endsection

{{ $blog->title }}

@if($blog->featured_image)
{{ $blog->title }}
@endif @if($blog->excerpt)
Excerpt

{{ $blog->excerpt }}

@endif
Content
{!! $blog->content !!}

Post Details

@if($blog->is_published) Published @else Draft @endif @if($blog->featured) Featured @endif
{{ $blog->author->name }}
{{ $blog->language->name }}
{{ $blog->slug }}
@if($blog->published_at)
{{ $blog->published_at->format('M d, Y H:i') }}
@endif
{{ $blog->created_at->format('M d, Y H:i') }}
{{ $blog->updated_at->format('M d, Y H:i') }}
{{ number_format($blog->views) }}
{{ $blog->reading_time }} min read
{{ $blog->allow_comments ? 'Enabled' : 'Disabled' }}
@if($blog->meta_title || $blog->meta_description || $blog->meta_keywords)

SEO Details

@if($blog->meta_title)
{{ $blog->meta_title }}
@endif @if($blog->meta_description)
{{ $blog->meta_description }}
@endif @if($blog->meta_keywords)
{{ $blog->meta_keywords }}
@endif @if($blog->canonical_url) @endif @if($blog->og_image)
OG Image
@endif @if($blog->schema_type)
{{ ucwords(str_replace('_', ' ', $blog->schema_type)) }}
@endif
@endif @if($blog->translations()->exists())

Translations

@foreach($blog->translations as $translation)
{{ $translation->language->name }}
{{ $translation->title }}
@endforeach
@endif
Edit Post Back to List @if($blog->is_published) View on Site @endif
@push('scripts') @endpush