@extends('layouts.tenant-admin') @section('title', 'التعليقات') @section('content')

التعليقات

بانتظار المراجعة معتمدة سبام
@forelse ($comments as $comment)
{{ $comment->name }} {{ $comment->email }}
{{ $comment->created_at->diffForHumans() }}

{{ $comment->body }}

على مقال: {{ $comment->article->title }}

@if ($comment->status !== 'approved')
@csrf
@endif @if ($comment->status !== 'spam')
@csrf
@endif
@csrf @method('DELETE')
@empty

لا توجد تعليقات هنا.

@endforelse
{{ $comments->links() }}
@endsection