row.php 283 Bytes
<?php
    use common\models\Point;
    use yii\web\View;

    /**
     * @var View  $this
     * @var Point $point
     */
?>
<div class="passport_point_item" data-key="<?php echo $point->num; ?>">
    <?php
        echo $this->render('_point', [ 'model' => $point ]);
    ?>
</div>