123456789101112131415161718192021222324252627282930313233343536 |
- <div class="container" style="padding-top:32px; padding-bottom:32px; text-align:left; font-size: 18px; line-height: 2em">
- <p>Twoje saldo: <b><?= UI::price($saldo); ?> PLN</b></p>
- <p>Numer rachunku do wpłat: <b><?= $nr_konta; ?></b></p>
- </div>
- <div class="container">
- <table class="table table-hover">
- <thead>
- <tr>
- <th>NUMER FAKTURY</th>
- <th>DATA WYSTAWIENIA</th>
- <th>STATUS</th>
- <th>WARTOŚĆ BRUTTO</th>
- <th> </th>
- </tr>
- </thead>
- <?php if (empty($fvList)) : ?>
- <tbody>
- <td colspan="5" style="padding:24px; text-align:center">
- Brak danych
- </td>
- </tbody>
- <?php else : ?>
- <?= UI::h('tbody', [], array_map(function ($fv) {
- return UI::h('tr', [], [
- UI::h('td', [], $fv['NUMER FAKTURY']),
- UI::h('td', [], $fv['DATA WYSTAWIENIA']),
- UI::h('td', [], $fv['STATUS']),
- UI::h('td', [], $fv['WARTOŚĆ BRUTTO']),
- UI::h('td', [], $fv['AKCJA']),
- ]);
- }, $fvList)); ?>
- <?php endif; ?>
- </table>
- </div>
|