Files
ladill-frontdesk/resources/views/frontdesk/security/evacuation-badges.blade.php
T
isaaccladandCursor 9e2d79936c
Deploy Ladill Frontdesk / deploy (push) Failing after 35s
Test / test (push) Failing after 2m45s
Initial Ladill Frontdesk release with deploy pipeline.
Visitor management app with SSO, kiosk, badges, reports, and Gitea CI deploy to frontdesk.ladill.com.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-27 20:37:15 +00:00

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>