2025-04-28 20:09:18 +01:00
|
|
|
{{--
|
|
|
|
|
$branch CommentTreeNode
|
|
|
|
|
--}}
|
2023-06-07 17:47:37 +01:00
|
|
|
<div class="comment-branch">
|
2025-04-24 13:21:23 +01:00
|
|
|
<div>
|
2025-04-28 20:09:18 +01:00
|
|
|
@include('comments.comment', ['comment' => $branch->comment])
|
2023-06-07 13:24:49 +01:00
|
|
|
</div>
|
2023-06-08 15:03:38 +01:00
|
|
|
<div class="flex-container-row">
|
|
|
|
|
<div class="comment-thread-indicator-parent">
|
|
|
|
|
<div class="comment-thread-indicator"></div>
|
2023-06-07 13:24:49 +01:00
|
|
|
</div>
|
2023-06-08 15:03:38 +01:00
|
|
|
<div class="comment-branch-children flex">
|
2025-04-28 20:09:18 +01:00
|
|
|
@foreach($branch->children as $childBranch)
|
2023-06-08 15:03:38 +01:00
|
|
|
@include('comments.comment-branch', ['branch' => $childBranch])
|
|
|
|
|
@endforeach
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-06-07 13:24:49 +01:00
|
|
|
</div>
|