@extends('back.layouts.master') @section('content')

فیلتر کردن

@if($comments->count())

مدیریت دیدگاه ها

@foreach ($comments as $comment) @endforeach
# نام دیدگاه وضعیت عملیات
{{ $comment->id }} {{ $comment->user ? $comment->user->fullname : $comment->name }} {{ short_content($comment->body, 20, false) }} @if($comment->status == 'pending')
منتظر تایید
@elseif($comment->status == 'accepted')
تایید شده
@else
تایید نشده
@endif
@else

مدیریت دیدگاه ها

چیزی برای نمایش وجود ندارد!

@endif {{ $comments->appends(request()->all())->links() }}
{{-- delete post modal --}} @endsection @push('scripts') @endpush