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