@php $pageTitle = '最新评论 - '.$siteName; @endphp @include('partials.head') @include('partials.header')

最新评论

@forelse($comments as $comment)
{{ $comment->author_name }} · 评论于 {{ $comment->post->title }} · {{ $comment->created_at->format(blog_setting('comment_timeformat', 'Y-m-d H:i')) }}
{!! nl2br(e($comment->content)) !!}
@empty
暂无评论
@endforelse {{ $comments->links('partials.pagination-links') }}
@include('partials.sidebar')
@include('partials.footer') @stack('theme:body_end')