@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