Visitor management app with SSO, kiosk, badges, reports, and Gitea CI deploy to frontdesk.ladill.com. Co-authored-by: Cursor <cursoragent@cursor.com>
25 lines
755 B
PHP
25 lines
755 B
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Evacuation badges · {{ $organization->name }}</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; margin: 0; padding: 1rem; }
|
|
.grid { display: flex; flex-wrap: wrap; gap: 1rem; }
|
|
.item { page-break-inside: avoid; }
|
|
@media print { .toolbar { display: none; } }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="toolbar" style="margin-bottom: 1rem;">
|
|
<strong>{{ $visits->count() }} badge(s)</strong> —
|
|
<button onclick="window.print()">Print all</button>
|
|
</div>
|
|
<div class="grid">
|
|
@foreach ($rendered as $html)
|
|
<div class="item">{!! $html !!}</div>
|
|
@endforeach
|
|
</div>
|
|
</body>
|
|
</html>
|