@extends('admin.layout') @section('title', '📚 المقالات — نظام مقالاتي') @push('css') @endpush @section('content')

📚 إدارة المقالات

🖋️ مقال جديد
@forelse($posts as $post) @empty @endforelse
# العنوان القسم الحالة تاريخ النشر العمليات
{{ $post->id }} {{ $post->title }} {{ $post->category->name ?? '-' }} {{ $post->status == 'published' ? 'منشور' : 'مسودة' }} {{ optional($post->published_at)->format('Y-m-d') ?? '-' }}
@csrf @method('DELETE')
لا توجد مقالات بعد.
{{ $posts->links() }}
@endsection