<?php $__env->startSection('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"><?php echo e($order->order_no); ?></div> </div> <div> <div class="text-sm text-gray-500">Amount</div> <div class="font-semibold"><?php echo e($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"><?php echo e(print_r($fpxConfig, true)); ?></pre> </div> <a href="<?php echo e(route('landing')); ?>" class="inline-block px-5 py-3 rounded bg-black text-white"> Back to Home </a> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.public', array_diff_key(get_defined_vars(), ['__data' => 1, '__path' => 1]))->render(); ?><?php /**PATH C:\Users\nashr\Repo\landing-fpx\resources\views/payments/fpx_redirect.blade.php ENDPATH**/ ?>