@if ($article->thumbnail)
 }})
@else
@endif
{{ $article->category }}
{{ $article->status ?? 'Published' }}
{{ $article->title }}
{{ $article->excerpt ?: \Illuminate\Support\Str::limit(strip_tags($article->content), 170) }}
@foreach (($article->tags ?? []) as $tag){{ $tag }}@endforeach
@if (($article->status ?? null) === 'Ditolak' && $article->rejection_reason)
Alasan ditolak
{{ $article->rejection_reason }}
@endif
{{ $article->published_at?->format('d/m/Y') ?? $article->created_at?->format('d/m/Y') }} • {{ $article->status ?? 'Published' }}
@if ($mode === 'send')
@else
Edit
@unless (($article->status ?? 'Published') === 'Archived')
@endunless
{{ $article->status }}
@endif