<table class="table table-hover" style="font-family: 'Exo 2', sans-serif;">
<thead style="color: #0f0f0f" >
<tr class="info">
<th>№ п/п</th>
<th>Наименование платных услуг</th>
<th>Единица измерения</th>
<th>Цена с учетом НДС, руб.</th>
</tr>
</thead>
<tbody>
<?php $i =1; foreach ($gyn as $item) :?>
<tr>
<td><?=$i++;?></td>
<td><?=$item['name']?></td>
<td><?=$item['unit']?></td>
<td><?=$item['price']?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>