_prices.php 595 Bytes
<?php
    /**
     * @var \common\models\Price[] $prices
     */
    ?>
<?php if (!empty($prices)){?>
<table>
    <thead>
        <tr>
            <th>Услуги</th>
            <th>Цена</th>
        </tr>
    </thead>
    <tbody>
      <?php foreach ($prices as $price){?>
        <tr>
            <td><?=$price->title?></td>
            <td><b><?=$price->price?> <span>грн.</span></b></td>
        </tr>
      <?php }?>
    </tbody>
</table>
  <div class="style">
    <span class="btn_ modal-link" data-form="write-to">Записаться на прием</span>
  </div>
<?php } ?>