27 lines
707 B
PHP

<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>결제 결과</title>
</head>
<body style="font-family:system-ui">
@php
$ok = $ok ?? false;
$status = $status ?? ($ok ? 'success' : 'fail');
$message = $message ?? '';
$meta = $meta ?? [];
@endphp
<h2>결제 결과: {{ $status }}</h2>
<p>{{ $message }}</p>
@if(!empty($meta))
<pre style="background:#f5f5f5;padding:12px;border-radius:8px;max-width:900px;white-space:pre-wrap">{{ json_encode($meta, JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT) }}</pre>
@endif
<pre>{{ json_encode($meta, JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT|JSON_INVALID_UTF8_SUBSTITUTE) }}</pre>
<a href="/">홈으로</a>
</body>
</html>