@extends('admin.layouts.master') @section('title', 'مدیریت نظرات وبلاگ') @section('content')

مدیریت نظرات وبلاگ

@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
پاک کردن
@csrf
@forelse($comments as $comment) @empty @endforelse
نویسنده محتوا پست وضعیت امتیاز اسپم تاریخ عملیات
{{ $comment->author_name }}
{{ $comment->author_email }}
{{ Str::limit($comment->content, 100) }}
{{ Str::limit($comment->post->title, 30) }} @if($comment->status == 'approved') تایید شده @elseif($comment->status == 'pending') در انتظار @elseif($comment->status == 'spam') اسپم @else زباله @endif {{ number_format($comment->spam_score * 100, 1) }}% {{ \Morilog\Jalali\Jalalian::fromCarbon($comment->created_at)->format('Y/m/d H:i') }}
@if($comment->status != 'approved') @csrf @method('PUT') @endif @if($comment->status != 'spam')
@csrf @method('PUT')
@endif
@csrf @method('DELETE')
هیچ نظری یافت نشد
@if($comments->hasPages())
{{ $comments->links() }}
@endif
@endsection