production/Vue/Ajaxprestatairessoinsbeneficiaire/index.php
2025-12-01 16:12:12 +00:00

47 lines
1.6 KiB
PHP
Executable File

<?php
?>
<div class="modal-dialog modal-lg" style="width:80%;">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-bs-dismiss="modal">&times;</button>
<legend class="modal-title" id="user" style="text-align:center;"><?= _('Prestataires de soins du bénéficiaire'); ?></legend>
</div>
<div class="modal-body">
<div id="div_liste">
<table id = "tableLister" class="table table-striped table-bordered table-hover table-condensed table-responsive compact" >
<thead >
<tr >
<th align='center'> <?= _("Localité") ?> </th>
<th align='center'> <?= _("Type") ?> </th>
<th align='center'> <?= _("Nom") ?></th>
<th align='center'><?= _("Situation") ?></th>
<th align='center'> <?= _("Fixe") ?> </th>
<th align='center'> <?= _("Mobile") ?> </th>
</tr>
</thead>
<tbody style="overflow:auto; height:90px;">
<?php
foreach ($prestataires as $v):
?>
<tr >
<td ><?= $this->nettoyer($v['localite']) ?></td>
<td><?= $this->nettoyer($v['typeprestataire']) ?></td>
<td > <?= $this->nettoyer($v['Prestataire']) ?> </td>
<td > <?= $this->nettoyer($v['situation']) ?> </td>
<td align='center'> <?= $this->nettoyer($v['TelephoneFixe']) ?> </td>
<td align='center'> <?= $this->nettoyer($v['telephonePortable']) ?> </td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
<div class="modal-footer">
<button type="button" id="" class="btn btn-default" data-bs-dismiss="modal">Fermer</button>
</div>
</div>
</div>