@if ($post->image) {{ $post->title }} @else {{ __('Placeholder image') }} @endif

{{ __('Post') }}

{{ $post->title }}

{{ __('Slug:') }} {{ $post->slug }}

{{ __('Category') }}

{{ $post->category?->name ?? __('Unassigned') }}

{{ __('Author') }}

{{ $post->author_name ?: __('Not set') }}

{{ __('Published') }}

{{ \App\Support\FormatSettings::dateTime($post->published_at) ?? '-' }}

{{ __('Status') }}

{{ $post->is_active ? __('Active') : __('Inactive') }}

{{ __('Bookmark') }}

{{ $post->is_bookmarked ? __('Bookmarked') : __('Standard') }}

{{ __('Tags') }}

{{ $post->tags ? implode(', ', $post->tags) : __('None') }}

{{ __('Excerpt') }}

{{ $post->excerpt ?: __('No excerpt provided.') }}

{{ __('Details') }}

{{ $post->details ?: __('No details provided.') }}