Articles

Manage and review articles from your feeds

@if ($approvalsEnabled)
Approval system enabled
@endif
@forelse ($articles as $article)

{{ $article->title ?? 'Untitled Article' }}

{{ $article->description ?? 'No description available' }}

Feed: {{ $article->feed?->name ?? 'Unknown' }} {{ $article->created_at->format('M d, Y') }}
@if ($article->is_published) Published @elseif ($article->approval_status === 'approved') Approved @elseif ($article->approval_status === 'rejected') Rejected @else Pending @endif @if ($article->url) @endif
@if ($article->approval_status === 'pending' && $approvalsEnabled)
@endif
@empty

No articles

No articles have been fetched yet.

@endforelse @if ($articles->hasPages())
{{ $articles->links() }}
@endif