index.php 648 Bytes
<?php
    /**
     * @var Comments $comments
     */
    use common\models\Comments;
    use common\modules\comment\widgets\CommentWidget;

?>

<?php
    $comments = new Comments([
        'id' => 1,
    ]);
    echo CommentWidget::widget([
        'model'             => $comments,
        'entityIdAttribute' => 'id',
        'layout'            => '{list}{form}',
        'formView' => '@frontend/views/comments/_form',
        'listView' => '@frontend/views/comments/_list',
        'itemView' => '@frontend/views/comments/_item',
    ]);
?>

<div class="nav_up"><a href="/">Главная</a> - <span>Новые коллекции</span></div>