{{ __('Post Comments') }}

{{ __('Post Comments') }}

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