@extends('layouts.legacy') @section('content')
@foreach ($comments as $comment)
{{ \Carbon\Carbon::parse($comment->datetime)->diffForHumans() }}
Comment by: {{ $comment->uname }}
{!! nl2br(e($comment->comment_description)) !!}
@if (!empty($comment->signature)) @endif
@endforeach
{{ $comments->links('pagination::bootstrap-4') }}
@endsection