mirror of
https://github.com/Karaka-Management/oms-Comments.git
synced 2026-01-16 10:38:42 +00:00
14 lines
432 B
PHP
Executable File
14 lines
432 B
PHP
Executable File
<?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->content; ?>
|
|
</article>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|