2023-06-08 00:47:37 +08:00
|
|
|
<div class="comment-branch">
|
2023-06-07 20:24:49 +08:00
|
|
|
<div class="mb-m">
|
|
|
|
@include('comments.comment', ['comment' => $branch['comment']])
|
|
|
|
</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">
|
|
|
|
@foreach($branch['children'] as $childBranch)
|
|
|
|
@include('comments.comment-branch', ['branch' => $childBranch])
|
|
|
|
@endforeach
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-06-07 20:24:49 +08:00
|
|
|
</div>
|