@php $isReply = !is_null($comment->parent_id); @endphp
{{ $comment->user->name }} {{ $comment->created_at->diffForHumans() }}

{{ $comment->comment }}

{{-- 🔁 Tombol Balas --}} @auth {{-- đŸ’Ŧ Form Balasan --}}
@endauth {{-- 🔁 Nested Balasan --}} @if ($comment->replies && $comment->replies->count())
@foreach ($comment->replies as $reply) @include('components.comment', ['comment' => $reply]) @endforeach
@endif