Blame view

frontend/views/articles/_slide_item.php 375 Bytes
c7f222e2   Artem   first
1
2
3
4
5
6
7
8
9
10
11
12
13
  <?php
  use yii\helpers\Html;
  ?>
  <li>
      <div class="slide_item_data">
          <div class="one_item_image">
              <?= Html::a(Html::img($model->picture),['articles/view', 'id' =>$model->id ] ) ?>
          </div>
          <div class="goods_data">
              <?= Html::tag('p', Html::a($model->name,['articles/view', 'id' =>$model->id ])) ?>
          </div>
      </div>
  </li>