Blame view

frontend/views/service/_prices.php 681 Bytes
43a24059   Anastasia   - servives
1
2
3
4
5
6
7
8
9
  <?php
      /**
       * @var \common\models\Price[] $prices
       */
      ?>
  <?php if (!empty($prices)){?>
  <table>
      <thead>
          <tr>
d9c166d7   alex   Перевёл почти все...
10
11
              <th><?=\Yii::t('app','Services');?></th>
              <th><?=\Yii::t('app','Price');?></th>
43a24059   Anastasia   - servives
12
13
14
15
16
17
          </tr>
      </thead>
      <tbody>
        <?php foreach ($prices as $price){?>
          <tr>
              <td><?=$price->title?></td>
d9c166d7   alex   Перевёл почти все...
18
              <td><b><?=$price->price?> <span><?=\Yii::t('app','Ua short valute');?>.</span></b></td>
43a24059   Anastasia   - servives
19
20
21
22
          </tr>
        <?php }?>
      </tbody>
  </table>
cc2da9cc   Anastasia   - question page
23
    <div class="style">
d9c166d7   alex   Перевёл почти все...
24
25
      <span class="btn_ modal-link" data-form="write-to">
          <?=\Yii::t('app','Make an appointment');?></span>
cc2da9cc   Anastasia   - question page
26
    </div>
43a24059   Anastasia   - servives
27
  <?php } ?>