?>
€
              </p>

              <table>
                <tr>
                  <th>Nom Article</th>
                  <th>Prix Unitaire</th>
                  <th>Quantite</th>
                  <th>Commentaire</th>
                  <th>Catégorie </th>
                  <th>Total</th>
                </tr>
                <?php 
    foreach ($resu['lignes'] as $ligneFacture) {
        $article = $articleManager->get($ligneFacture->getIdArticle());
        ?>
                  <tr>
                    <td><?php 
        echo $article->getNom();
        ?>
</td>
                    <td><?php 
        echo $ligneFacture->getPrix();
        ?>
</td>
                    <td><?php 
        echo $ligneFacture->getQuantite();
        ?>
</td>
                    <td><?php