giftcon_dev/resources/views/web/partials/auth/danal_finish.blade.php
2026-01-26 12:59:59 +09:00

17 lines
368 B
PHP

<!doctype html>
<html lang="ko">
<head><meta charset="utf-8"></head>
<body>
<script>
try {
window.parent && window.parent.postMessage({
type: 'danal_result',
ok: {{ $ok ? 'true' : 'false' }},
message: @json($message),
redirect: @json($redirect),
}, '*');
} catch (e) {}
</script>
</body>
</html>