@extends('layouts.nova') @section('content')
@foreach($comments as $comment) @php $author = $comment->user; $art = $comment->artwork; $created = optional($comment->created_at); @endphp
{{ $created ? $created->diffForHumans() . ' ago' : '' }}
Comment by: {{ $author->name ?? $author->uname ?? '' }}
@if($art) {{ $art->name }} @endif
{!! nl2br(e($comment->content ?? $comment->description ?? '')) !!}
@if(!empty($author->signature)) @endif
@endforeach
@if($comments->hasPages())
{{ $comments->links() }}
@endif
@endsection