{{-- Breadcrumb --}}
    @foreach ($comments as $comment)
  • image
    @if ($comment->status == 1)
    {{ __('Approved') }}
    @else
    {{ __('Pending') }}
    @endif
    {{ $comment->name }}
    {{ formattedDateTime($comment?->created_at) }}
    {!! $comment->comment !!}
  • @endforeach
{{ $comments->links() }}