newdesigngestionnaire/Vue/Ajaxprestatairesreseau/rechercheraffectes.php
2026-03-18 10:45:33 +00:00

13 lines
763 B
PHP

<?php if (isset($prestatairesreseau)): ?>
<?php foreach ($prestatairesreseau as $v): $code = $v['codePrestataire']; ?>
<tr>
<td class="ps-3 text-center">
<button class="btn btn-sm btn-danger-light rounded-circle action-icon" onclick="retirer_un_prestataire_reseau('<?=$code?>');">
<i class="fas fa-chevron-left"></i>
</button>
</td>
<td class="fw-bold text-dark text-uppercase"><?= $this->nettoyer($v['libelle']) ?></td>
<td class="pe-3 small text-muted"><?= $this->nettoyer($v['localite']) ?> <span class="badge bg-light text-muted ms-1"><?= $this->nettoyer($v['typeprestataire']) ?></span></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>