radiantassure/Vue/Consultertableauprestation/index.php
2025-12-07 09:35:13 +00:00

25 lines
901 B
PHP
Executable File

<div id="div_tableau_prestation">
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
<thead>
<tr>
<th width="60%" rowspan="2" style='text-align:center'>Type de Prestataire</th>
<th width="40%" colspan="3" style='text-align:center'>Tickets Modérateurs (%)</th>
</tr>
<tr>
<th width="20%" style='text-align:center'>Base</th>
<th width="20%" style='text-align:center'>En vigueur</th>
</tr>
</thead>
<tbody>
<?php foreach ($tableau_prestations as $prestation):
?>
<tr valign="top">
<td align='center'><?= $this->nettoyer($prestation['libelleReseau']) ?></td>
<td align='center'><?= $this->nettoyer($prestation['tmBase']) ?></td>
<td align='center'><?= $this->nettoyer($prestation['tm']) ?></td>
<?php endforeach; ?>
</tbody>
</table>
</div>