Logo white

Anastasia / clinica

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • clinica
  • frontend
  • views
  • service
  • _prices.php
  • - servives ...
    43a24059
    - prices
    - disable artboxmodal css
    Anastasia authored
    2018-05-30 11:46:31 +0300  
    Browse Code »
_prices.php 465 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
<?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>
<?php } ?>