@extends('adminLayout::index')
@section('pageContent')
{{ __('admin/posts.show_desc') }}
{{ __('table.labels.author') }}
{{ $postData->user->name }}
{{ __('table.labels.type') }}
{{ $postData->type->label() }}
{{ __('table.labels.media') }}
{{ $postData->media_count }}
{{ __('table.labels.shares') }}
{{ $postData->shares_count }}
{{ __('table.labels.quotes') }}
{{ $postData->quotes_count }}
{{ __('table.labels.created_at') }}
{{ $postData->created_at->getFormatted() }}
#ID
{{ $postData->id }}
Hash ID
{{ $postData->hash_id }}
{{ __('table.labels.edited') }}
{{ empty($postData->edited) ? '❌' : '✅' }}
{{ __('table.labels.is_sensitive') }}
{{ empty($postData->is_sensitive) ? '❌' : '✅' }}
{{ __('table.labels.is_ai_generated') }}
{{ empty($postData->is_ai_generated) ? '❌' : '✅' }}
{{ __('table.labels.text_language') }}
{{ $postData->text_language }}
@endsection