Comments

Manage your post comments and replies

0 selected
@foreach ($comments as $comment) @endforeach
Post
Comment
Status
Actions
{{ $comment->post->title }}
{{ $comment->content }} {{ $comment->status == 1 ? 'Approved' : 'Pending' }}
@if ($comment->status == 1) @else @endif

Showing {{ $start }} - {{ $end }} of {{ $total }} comments

Show
{{ $comments->links('vendor.pagination.numbers-only-with-ellipsis') }}
{{-- Bulk Actions --}}
0 selected
@foreach ($replies as $reply) @endforeach
Comment
Reply
Status
Actions
{{ $reply->comment->content }}
{{ $reply->content }} {{ $reply->status == 1 ? 'Approved' : 'Pending' }}
@if ($reply->status == 1) @else @endif

Showing {{ $replyStart }} - {{ $replyEnd }} of {{ $replyTotal }} replies

Show
{{ $replies->links('vendor.pagination.numbers-only-with-ellipsis') }}