@php /** @var \WebDevEtc\BlogEtc\Models\Comment[] $comments */ @endphp @forelse($comments as $comment)
{{ $comment->author() }} @if(config('blogetc.comments.ask_for_author_website') && $comment->author_website) (website) @endif {{ $comment->created_at->diffForHumans() }}

{!! nl2br(e($comment->comment)) !!}

@empty
Aucun commentaire pour le moment. Pourquoi ne seriez vous pas le premier ?
@endforelse @if(count($comments) >= config('blogetc.comments.max_num_of_comments_to_show', 500))

Seules les {{ config('blogetc.comments.max_num_of_comments_to_show', 500) }} premiers commentaires sont visibles.

@endif