Slug: {{ $blogPost->slug }}
Status:
@if($blogPost->is_active)
Active
@else
Inactive
@endif
@if($blogPost->published_at)
Published: {{ $blogPost->published_at->format('M d, Y') }}
@endif
@if($blogPost->featured_image)
@endif
@if($blogPost->categories->count() > 0)
Categories:
@foreach($blogPost->categories as $category)
{{ $category->name }}
@endforeach
@endif
@if($blogPost->excerpt)
Excerpt:
{{ $blogPost->excerpt }}
@endif
Content:
{!! $blogPost->content !!}
@if($blogPost->seo_title || $blogPost->seo_description || $blogPost->seo_keywords)
SEO Information
@if($blogPost->seo_title)
SEO Title: {{ $blogPost->seo_title }}
@endif
@if($blogPost->seo_description)
SEO Description: {{ $blogPost->seo_description }}
@endif
@if($blogPost->seo_keywords)
SEO Keywords: {{ $blogPost->seo_keywords }}
@endif
@endif
Created: {{ $blogPost->created_at->format('M d, Y H:i') }}
Last Updated: {{ $blogPost->updated_at->format('M d, Y H:i') }}