mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00
14 lines
357 B
PHP
14 lines
357 B
PHP
![]() |
<?= $this->extend('episode/_layout-preview') ?>
|
||
|
|
||
|
<?= $this->section('content') ?>
|
||
|
|
||
|
<div class="flex flex-col gap-y-2">
|
||
|
<?php foreach ($episode->comments as $comment): ?>
|
||
|
<?= view('episode/_partials/comment', [
|
||
|
'comment' => $comment,
|
||
|
'podcast' => $podcast,
|
||
|
]) ?>
|
||
|
<?php endforeach; ?>
|
||
|
</div>
|
||
|
|
||
|
<?= $this->endSection() ?>
|