_company_common_review.php
679 Bytes
<?php
/**
* @var Comment $model
*/
use common\modules\comment\models\Comment;
use kartik\rating\StarRating;
?>
<?php
if(!empty( $model->rating )) {
echo StarRating::widget([
'name' => 'rating_company_review',
'value' => $model->rating->value,
'pluginOptions' => ['displayOnly' => true, 'size' => 'xxs']
]);
}
?>
<div class="company-performer-comments-autor">
Отзыв от:
<?php
$model->getAuthor(' (Гость)');
?>
</div>
<div class="company-performer-comments-txt"><?= $model->text ?></div>
<a href="#" class="company-comm-see-all"><span>Развернуть</span></a>