Blame view

frontend/views/point/row.php 283 Bytes
b41d5459   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  <?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>