[Back] @extends('layouts.public')
@section('content')
<h1 class="text-2xl font-bold mb-4">FPX Payment (Stub)</h1>
<div class="bg-white rounded-xl shadow p-6 space-y-4">
<div>
<div class="text-sm text-gray-500">Order No</div>
<div class="font-semibold">{{ $order->order_no }}</div>
</div>
<div>
<div class="text-sm text-gray-500">Amount</div>
<div class="font-semibold">{{ $order->total_formatted }}</div>
</div>
<div class="p-4 rounded bg-yellow-50 border text-sm">
FPX integration is not implemented yet.
Add your credentials later in <code>config/fpx.php</code> + <code>.env</code>.
</div>
<div class="text-sm text-gray-600">
Current config (for checking only):
<pre class="mt-2 p-3 bg-gray-50 rounded overflow-auto text-xs">{{ print_r($fpxConfig, true) }}</pre>
</div>
<a href="{{ route('landing') }}" class="inline-block px-5 py-3 rounded bg-black text-white">
Back to Home
</a>
</div>
@endsection