_prices.php 929 Bytes
<?php
    /**
     * @var \common\models\Price[] $prices
     */
    ?>
<?php if (!empty($prices)){?>
<table>
    <thead>
        <tr>
            <th><?=\Yii::t('app','Services');?></th>
            <th><?=\Yii::t('app','Price');?></th>
        </tr>
    </thead>
    <tbody>
      <?php foreach ($prices as $price){?>
        <tr>
            <td><?=$price->title?></td>
            <td><b><?=$price->price?> <span><?=\Yii::t('app','Ua short valute');?>.</span></b></td>
        </tr>
      <?php }?>
    </tbody>
</table>
  <div class="style new-price-write-txt-btn">
      <div class="new-price-write-txt"><span>Точную стоимость лечения узнавайте на консультации с доктором</span></div>
      <div class="new-price-write-btn">
          <span class="btn_ modal-link" data-form="write-to"><?=\Yii::t('app','Make an appointment');?></span>
      </div>
  </div>
<?php } ?>