Files
ladill-frontdesk/resources/views/frontdesk/qr/checked-out.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

17 lines
578 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Checked out</title>
@vite(['resources/css/app.css'])
</head>
<body class="flex min-h-screen items-center justify-center bg-slate-50 p-6">
<div class="text-center">
<p class="text-5xl"></p>
<h1 class="mt-4 text-xl font-semibold text-slate-900">{{ $visit->visitor->full_name }} checked out</h1>
<p class="mt-2 text-sm text-slate-500">{{ now()->format('g:i A') }}</p>
</div>
</body>
</html>