Manage Comments

@if(session()->has('message'))
{{ session('message') }}
@endif @if($comments->isEmpty())

No comments available.

@else
@foreach($comments as $comment) @endforeach
Name Email Message Blog Post Status Actions
{{ $comment->name }} {{ $comment->email }} {{ Str::limit($comment->message, 50) }} {{ $comment->blogNews->title ?? 'N/A' }} {{ $comment->approved ? 'Approved' : 'Pending' }} @if(!$comment->approved) @endif
{{ $comments->links() }} @endif