@extends('layouts.admin') @section('title', 'إدارة المقالات | Help Numo') @section('page-title', 'إدارة المقالات') @section('admin_content')

📝 قائمة المقالات

@forelse ($articles as $article) @php $catNames = $article->categories->pluck('name')->values()->all(); $tagNames = $article->tags->pluck('name')->values()->all(); $detailsId = 'article-row-details-'.$article->id; @endphp
{{ $article->title }} /{{ $article->slug }}
{{ $article->status === 'published' ? 'منشور' : 'مسودة' }}
@include('admin.articles.partials.article-row-actions', ['article' => $article, 'variant' => 'listed'])
@empty
@if (request()->filled('search') || request()->filled('updated_from') || request()->filled('updated_to') || request()->filled('category_id') || request()->filled('tag_id')) لا توجد نتائج مطابقة. جرّب تغيير كلمات البحث أو نطاق التاريخ أو التصفية. @else 📭 لا توجد مقالات حتى الآن. ابدأ بإضافة أول مقالة. @endif
@endforelse
{{ $articles->links() }}
@endsection