@extends('layouts.app') @section('content')
{{ $post->excerpt }}
{{ $post->meta_title }}
@endif @if($post->meta_description){{ $post->meta_description }}
@endifStatus: @if($post->status === 'published') Published @elseif($post->status === 'scheduled') Scheduled @else Draft @endif
Slug:
{{ $post->slug }}
Published:
{{ $post->published_at->format('F d, Y') }}
{{ $post->published_at->format('H:i') }}
Author:
{{ $post->author->name }}
Views: {{ $post->views_count }}
Reading Time: {{ $post->reading_time }} min read
Comments: @if($post->allow_comments) Enabled @else Disabled @endif
Featured: @if($post->is_featured) Yes @else No @endif
Created:
{{ $post->created_at->format('M d, Y H:i') }}
Last Updated:
{{ $post->updated_at->format('M d, Y H:i') }}