oms-Comments/Theme/Backend/Components/Comment/list.tpl.php
2020-07-31 20:57:06 +00:00

14 lines
437 B
PHP

<?php declare(strict_types=1);
/** @var \Modules\Comments\Models\Comment[] $comments */
$comments = $this->commentList->getComments();
foreach ($comments as $comment) : ?>
<div class="row">
<div class="col-xs-12">
<section class="portlet">
<article>
<?= $comment->getContent(); ?>
</article>
</section>
</div>
</div>
<?php endforeach; ?>