Files
2026-05-05 12:30:45 +02:00

56 lines
2.1 KiB
PHP

<section class="admin-section">
<div class="section-header">
<div>
<p class="eyebrow">Rechnungen</p>
<h1>Erstellte Rechnungen und Zahlungsstand</h1>
</div>
<a class="button-secondary" href="<?= h(url('admin/buchungen')) ?>">Zu den Buchungen</a>
</div>
<?php if (!empty($flashSuccess)): ?>
<div class="flash flash-success"><?= h((string) $flashSuccess) ?></div>
<?php endif; ?>
<?php if (!empty($flashError)): ?>
<div class="flash flash-error"><?= h((string) $flashError) ?></div>
<?php endif; ?>
<section class="table-card">
<div class="table-card-header">
<h2>Rechnungsliste</h2>
<span><?= h((string) count($invoices)) ?> Einträge</span>
</div>
<div class="table-wrap">
<table>
<thead>
<tr>
<th>Rechnung</th>
<th>Auftrag</th>
<th>Ausgestellt</th>
<th>Fällig</th>
<th>Zahlungsart</th>
<th>Gesamt</th>
</tr>
</thead>
<tbody>
<?php foreach ($invoices as $invoice): ?>
<tr>
<td><a href="<?= h(url('admin/invoice/pdf?id=' . urlencode($invoice['id']))) ?>" target="_blank"><?= h($invoice['invoice_number']) ?></a></td>
<td><?= h($invoice['booking_id']) ?></td>
<td><?= h(formatDate($invoice['issue_date'])) ?></td>
<td><?= h(formatDate($invoice['due_date'])) ?></td>
<td><?= h($invoice['payment_method_label']) ?></td>
<td><?= h(formatCurrency((int) $invoice['total_cents'])) ?></td>
</tr>
<?php endforeach; ?>
<?php if ($invoices === []): ?>
<tr>
<td colspan="6">Noch keine Rechnungen vorhanden.</td>
</tr>
<?php endif; ?>
</tbody>
</table>
</div>
</section>
</section>