Files
ladill-mini/resources/views/public/qr/payment-confirmed.blade.php
T
isaaccladandCursor db66d99895 Initial Ladill Mini app — trader payment QRs without styling.
Lean control center at mini.ladill.com: payment QR CRUD, Paystack checkout with 5% fee settlement via Billing API, payments feed, and payouts. QR codes use a fixed black-and-white preset only.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-07 18:43:39 +00:00

25 lines
1.2 KiB
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Payment confirmed</title>
@vite(['resources/css/app.css'])
</head>
<body class="min-h-screen bg-emerald-50/40">
<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">Payment successful</h1>
<p class="mt-2 text-sm text-slate-600">
{{ $payment->currency }} {{ number_format($payment->amount_minor / 100, 2) }} paid to
{{ $qrCode->content()['business_name'] ?? $qrCode->label }}.
</p>
<p class="mt-4 text-xs text-slate-500">Reference: {{ $payment->reference }}</p>
</div>
</main>
</body>
</html>