Files
ladill-events/resources/views/public/payment-return.blade.php
T
isaacclad 69ede57c03
Deploy Ladill Events / deploy (push) Successful in 1m41s
Frame event checkout sheet for ticket buyers.
Use buyer-facing copy, attendee email for gateway receipts, and keep operator wording only for staff wallet top-up.
2026-07-15 13:23:36 +00:00

28 lines
822 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Payment</title>
<style>
body { font-family: system-ui, sans-serif; background: #f8fafc; color: #0f172a; display: grid; place-items: center; min-height: 100vh; margin: 0; }
p { font-size: 0.95rem; color: #475569; }
</style>
</head>
<body>
<p>Confirming your payment…</p>
<script>
(function () {
var url = @json($redirect);
try {
if (window.top && window.top !== window.self) {
window.top.location.replace(url);
return;
}
} catch (e) {}
window.location.replace(url);
})();
</script>
</body>
</html>