@if ($variant === 'listed')
@php
$articleViewUrl = $article->status === 'published'
? route('library.article.show', $article->slug)
: route('admin.articles.preview', $article);
$previewTitle = $article->status === 'published'
? 'معاينة — صفحة المقالة'
: 'معاينة — مسودة (يتطلب تسجيل الدخول)';
@endphp
@else
@endif