Files
kaffeekasse-saas/resources/views/admin/index.php
T
2026-06-23 00:06:31 +02:00

46 lines
1.6 KiB
PHP

<?php require __DIR__ . '/../partials/layout-top.php'; ?>
<section class="page-head inline-head">
<div>
<span class="eyebrow">Plattform</span>
<h1>Kaffeelisten verwalten</h1>
<p>Überblick über Kaffeelisten, Pakete und direkte Einstiege in die jeweiligen Arbeitsbereiche.</p>
</div>
<form method="post" action="<?= e(url('/admin/logout')) ?>">
<?= csrf_field($csrf) ?>
<button class="button button-secondary" type="submit">Abmelden</button>
</form>
</section>
<section class="table-card">
<table>
<thead>
<tr>
<th>Kaffeeliste</th>
<th>Paket</th>
<th>Status</th>
<th>Mitglieder</th>
<th>Produkte</th>
<th>Aktion</th>
</tr>
</thead>
<tbody>
<?php foreach ($tenants as $tenant): ?>
<tr>
<td>
<strong><?= e($tenant['name']) ?></strong><br>
<small>/t/<?= e($tenant['slug']) ?></small>
</td>
<td><?= e(ucfirst($tenant['plan'])) ?></td>
<td><span class="status-pill"><?= e($tenant['status']) ?></span></td>
<td><?= e((string) $tenant['member_count']) ?></td>
<td><?= e((string) $tenant['product_count']) ?></td>
<td><a class="text-link" href="<?= e(tenant_url($tenant['slug'])) ?>">Kaffeeliste öffnen</a></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</section>
<?php require __DIR__ . '/../partials/layout-bottom.php'; ?>