mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-11 16:55:46 +00:00
11 lines
310 B
PHP
11 lines
310 B
PHP
<?= $this->include('podcast/_partials/comment_card') ?>
|
|
<div class="-mt-2 overflow-hidden border-b border-l border-r post-replies rounded-b-xl">
|
|
|
|
<?php foreach ($comment->replies as $reply): ?>
|
|
<?= view('podcast/_partials/comment_reply', [
|
|
'reply' => $reply,
|
|
]) ?>
|
|
<?php endforeach; ?>
|
|
|
|
</div>
|