Komentar
@foreach ($berita->comments as $comment)
@php
$emailHash = md5(strtolower(trim($comment->email)));
$avatarUrl = "https://www.gravatar.com/avatar/{$emailHash}?s=65";
@endphp
@foreach ($comment->replies as $reply)
@php
$replyEmailHash = md5(strtolower(trim($reply->email)));
$replyAvatarUrl = "https://www.gravatar.com/avatar/{$replyEmailHash}?s=65";
@endphp
@endforeach
@endforeach
{{ $comment->nama }}
Balas{{ $comment->body }}