mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-03-17 19:03:13 -05:00
Also had to use `@style` directives inside /resources/views/components/user-tag.blade.php. Prettier was erroring when the `@if` directive was inside the html attribute otherwise. Seems to have always been an issue, but the CI must only be formatting files that changed and because the file was only just changed now, it never discovered it until now.
17 lines
485 B
PHP
17 lines
485 B
PHP
<section class="panelV2 blocks__comments">
|
|
<h2 class="panel__heading">
|
|
{{ __('blocks.latest-comments') }}
|
|
</h2>
|
|
<div class="panel__body">
|
|
<ul class="comment-list">
|
|
@forelse ($comments as $comment)
|
|
<li class="comment__list-item">
|
|
<x-torrent.comment-listing :comment="$comment" />
|
|
</li>
|
|
@empty
|
|
No comments.
|
|
@endforelse
|
|
</ul>
|
|
</div>
|
|
</section>
|