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

التعليقات

@if(session('success'))
{{ session('success') }}
@endif
@forelse($comments as $c) @empty @endforelse
الكاتب التعليق المقال الحالة الخيارات
{{ $c->author_name }} {{ Str::limit($c->content, 50) }} {{ $c->post?->title }} @if($c->status === 'approved') معتمد @elseif($c->status === 'pending') بانتظار المراجعة @else مرفوض @endif @if($c->status !== 'approved')
@csrf @method('PUT')
@endif
@csrf @method('DELETE')
لا توجد تعليقات حالياً
{{ $comments->links() }}
@endsection