@extends('layouts.dashboard') @section('title', t('المدونة','Blog')) @section('page-title','📰 '.t('إدارة المدونة','Blog Management')) @section('content')
➕ {{ t('مقال جديد','New Post') }}
@forelse($posts as $post) @empty @endforelse
{{ t('المقال','Post') }}{{ t('الكاتب','Author') }}{{ t('الفئة','Category') }}{{ t('الحالة','Status') }}{{ t('المشاهدات','Views') }}{{ t('إجراءات','Actions') }}
{{ $post->title_ar }}
@if($post->excerpt_ar)
{{ Str::limit($post->excerpt_ar,60) }}
@endif
{{ $post->created_at->format('Y-m-d') }}
{{ $post->author->name??'—' }} {{ $post->category }} {{ $post->status==='published'?'✅ '.t('منشور','Published'):'📝 '.t('مسودة','Draft') }} 👁️ {{ $post->views }}
✏️ @if($post->status==='draft')
@csrf
@else
@csrf
@endif
@csrf @method('DELETE')
{{ t('لا يوجد مقالات — ابدأ بكتابة أول مقال','No posts yet — start writing your first post') }}

➕ {{ t('مقال جديد','New Post') }}
@if($posts->hasPages())
{{ $posts->withQueryString()->links() }}
@endif
@endsection