home.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <div class="container" style="padding-top:32px; padding-bottom:32px; text-align:left; font-size: 18px; line-height: 2em">
  2. <p>Twoje saldo: <b><?= UI::price($saldo); ?> PLN</b></p>
  3. <p>Numer rachunku do wpłat: <b><?= $nr_konta; ?></b></p>
  4. </div>
  5. <div class="container">
  6. <table class="table table-hover">
  7. <thead>
  8. <tr>
  9. <th>NUMER FAKTURY</th>
  10. <th>DATA WYSTAWIENIA</th>
  11. <th>STATUS</th>
  12. <th>WARTOŚĆ BRUTTO</th>
  13. <th> </th>
  14. </tr>
  15. </thead>
  16. <?php if (empty($fvList)) : ?>
  17. <tbody>
  18. <td colspan="5" style="padding:24px; text-align:center">
  19. Brak danych
  20. </td>
  21. </tbody>
  22. <?php else : ?>
  23. <?= UI::h('tbody', [], array_map(function ($fv) {
  24. return UI::h('tr', [], [
  25. UI::h('td', [], $fv['NUMER FAKTURY']),
  26. UI::h('td', [], $fv['DATA WYSTAWIENIA']),
  27. UI::h('td', [], $fv['STATUS']),
  28. UI::h('td', [], $fv['WARTOŚĆ BRUTTO']),
  29. UI::h('td', [], $fv['AKCJA']),
  30. ]);
  31. }, $fvList)); ?>
  32. <?php endif; ?>
  33. </table>
  34. </div>