]> BookStack Code Mirror - bookstack/blob - resources/views/comments/comment-branch.blade.php
Tests: Updated comment test to account for new editor usage
[bookstack] / resources / views / comments / comment-branch.blade.php
1 {{--
2 $branch CommentTreeNode
3 --}}
4 <div class="comment-branch">
5     <div>
6         @include('comments.comment', ['comment' => $branch->comment])
7     </div>
8     <div class="flex-container-row">
9         <div class="comment-thread-indicator-parent">
10             <div class="comment-thread-indicator"></div>
11         </div>
12         <div class="comment-branch-children flex">
13             @foreach($branch->children as $childBranch)
14                 @include('comments.comment-branch', ['branch' => $childBranch])
15             @endforeach
16         </div>
17     </div>
18 </div>