<table class="price-table">
<thead>
<tr>
<th>Услуга</th>
<th>Срок</th>
<th>Цена</th>
<th></th>
</tr>
</thead>
<tbody>
<?php foreach ($values as $key => $value): ?>
<tr>
<?php foreach ($value as $val): ?>
<td><?= $val ?></td>
<?php endforeach; ?>
<td><button class="btn-orange modal_open">Заказать</button></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>