Files
ladill-give/resources/views/public/qr/donation-confirmed.blade.php
T
isaaccladandCursor 0860b08af7 Initial Ladill Give extraction — online giving pages at give.ladill.com.
Donation checkout via Ladill Pay (9% fee), church/giving QR pages, SSO, and platform scan forwarding.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-09 07:25:49 +00:00

28 lines
1.5 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Thank you for giving</title>
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600,700&display=swap" rel="stylesheet" />
@vite(['resources/css/app.css'])
</head>
<body class="min-h-screen bg-emerald-50/40 font-sans antialiased">
<main class="mx-auto flex min-h-screen max-w-md flex-col justify-center px-4 py-10 text-center">
<div class="rounded-3xl border border-emerald-100 bg-white p-8 shadow-sm">
<div class="mx-auto flex h-14 w-14 items-center justify-center rounded-full bg-emerald-100 text-emerald-600">
<svg class="h-7 w-7" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12.75l6 6 9-13.5"/></svg>
</div>
<h1 class="mt-4 text-xl font-bold text-slate-900">Thank you!</h1>
<p class="mt-2 text-sm text-slate-600">
Your {{ $donation->currency }} {{ number_format($donation->amount_minor / 100, 2) }}
{{ $donation->collection_type ? strtolower($donation->collection_type) : 'donation' }} to
{{ $qrCode->content()['name'] ?? $qrCode->label }} was received.
</p>
<p class="mt-4 text-xs text-slate-500">Reference: {{ $donation->reference }}</p>
</div>
</main>
</body>
</html>