mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
3b46b92bb9
Includes a change of create response to use a branch as a template.
15 lines
543 B
PHP
15 lines
543 B
PHP
<div class="comment-branch">
|
|
<div class="mb-m">
|
|
@include('comments.comment', ['comment' => $branch['comment']])
|
|
</div>
|
|
<div class="flex-container-row">
|
|
<div class="comment-thread-indicator-parent">
|
|
<div class="comment-thread-indicator"></div>
|
|
</div>
|
|
<div class="comment-branch-children flex">
|
|
@foreach($branch['children'] as $childBranch)
|
|
@include('comments.comment-branch', ['branch' => $childBranch])
|
|
@endforeach
|
|
</div>
|
|
</div>
|
|
</div> |