Размер файла: 814B
<?php
use App\Models\Comment;
use App\Models\File;
use App\Models\Story;
use MotorORM\Collection;
/** @var Story $story */
/** @var Comment $comment */
/** @var Collection<File> $files */
?>
<?php $this->layout('layout') ?>
<?php $this->start('title') ?>Редактирование комментария<?php $this->stop() ?>
<?php $this->start('breadcrumb') ?>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="/"><i class="bi bi-house-door"></i></a></li>
<li class="breadcrumb-item"><a href="<?= $story->getLink() ?>"><?= escape($story->title) ?></a></li>
<li class="breadcrumb-item active">Редактирование</li>
</ol>
</nav>
<?php $this->stop() ?>
<?= $this->fetch('comments/_form', compact('story', 'comment')) ?>