15 lines
748 B
PHP
15 lines
748 B
PHP
<?php if (isset($prestatairesdispo)): ?>
|
|
<?php foreach ($prestatairesdispo as $v): $code = $v['codePrestataire']; ?>
|
|
<tr>
|
|
<td class="ps-3">
|
|
<div class="fw-bold text-dark"><?= $this->nettoyer($v['libelle']) ?></div>
|
|
<div class="text-muted small"><?= $this->nettoyer($v['localite']) ?> | <?= $this->nettoyer($v['typeprestataire']) ?></div>
|
|
</td>
|
|
<td class="text-center">
|
|
<button class="btn btn-sm btn-primary-ghost rounded-circle action-icon" onclick="ajouter_un_prestataire_reseau('<?=$code?>');">
|
|
<i class="fas fa-chevron-right"></i>
|
|
</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|