@extends('layouts.dashboard') @section('title', t('المدونة','Blog')) @section('page-title','📰 '.t('إدارة المدونة','Blog Management')) @section('content')
| {{ 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')
@else
@endif
|
|
{{ t('لا يوجد مقالات — ابدأ بكتابة أول مقال','No posts yet — start writing your first post') }}
➕ {{ t('مقال جديد','New Post') }} | |||||