Deploy Ladill Mini / deploy (push) Successful in 23s
Staff-facing counter register at pos.ladill.com with catalog cart, cash and MoMo/card checkout via Ladill Pay, CRM timeline/import, invoice prefill, and Merchant catalog import. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
1.4 KiB
PHP
27 lines
1.4 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>
|
|
<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">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>
|