{{ __('Post Preview') }}
{{ __('Back to Posts') }} {{ __('Edit Post') }}
{{ $post->title }} {{ $post->created_at->format(config('streamline.blog.date_format')) }} - by {{ $post->user->name }} @if ($post->categories->count() > 0) in @foreach ($post->categories as $category) {{ $category->name }} @endforeach @endif {!! $post->content !!}
{{ __('Post Details') }}
@if ($post->published) {{ __('Published') }} @else {{ __('Draft') }} @endif
@if ($post->featured_image_url)
{{ __('Featured Image') }}
@endif
{{ __('Date') }} Published at: {{ $post->created_at->format(config('streamline.blog.admin.posts.date_format')) }} @if ($post->created_at != $post->updated_at) Updated at: {{ $post->updated_at->format(config('streamline.blog.admin.posts.date_format')) }} @endif
{{ __('Slug') }} {{ $post->slug }}
@if ($post->meta_title)
{{ __('Meta Title') }} {{ $post->meta_title }}
@endif @if ($post->meta_description)
{{ __('Meta Description') }} {{ $post->meta_description }}
@endif