{{ $article->title }}
·
/{{ $article->slug }}
{{ $article->status === 'published' ? 'منشور' : 'مسودة' }}
حُذفت {{ $article->deleted_at?->diffForHumans() }}
@include('admin.articles.partials.article-row-actions', ['article' => $article, 'variant' => 'trashed'])
التصنيفات
@if ($article->categories->isNotEmpty())
@foreach ($catNames as $name)
{{ $name }}
@endforeach
@else
—
@endif
الوسوم
@if ($article->tags->isNotEmpty())
@foreach ($tagNames as $name)
{{ $name }}
@endforeach
@else
—
@endif
الكاتب
{{ $article->authorDisplayNamePlain() }}@if ($article->authorIsInactive()) (مستخدم غير نشط)@endif
تاريخ الحذف
{{ $article->deleted_at?->locale('ar')->translatedFormat('j F Y، H:i') }}