<?php foreach ($totals as $total) { ?>
<tr>
<td><b><?php echo $total['title']; ?>:</b></td>
<td><strong><?php echo $total['text']; ?></strong></td>
</tr>
<?php } ?>
<table>
<tbody><tr>
<td><b>Сумма:</b></td>
<td><strong>28 728 руб</strong></td>
</tr>
<tr>
<td><b>Итого:</b></td>
<td><strong>28 728 руб</strong></td>
</tr>
</tbody></table>
<?php foreach ($totals as $total) {
if( $total['title'] === 'Сумма' ) continue;
?>
<tr>
<td><b><?php echo $total['title']; ?>:</b></td>
<td><strong><?php echo $total['text']; ?></strong></td>
</tr>
<?php } ?>