index.php
270 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'
]);
?>