{{-- resources/views/website/pay.blade.php --}} Pay Subscription

Pay Subscription

@php // defaults if controller didn't pass $receiver = env('RECEIVER_WALLET'); $saved = $savedWallet ?? null; $amount = $amount ?? '1'; $userId = $userId ?? null; $return = $return ?? null; $receiver = $receiver ?? env('RECEIVER_WALLET', null); // Force BSC USDT contract for display (override if different chain) $usdtBsc = '0x55d398326f99059fF775485246999027B3197955'; @endphp
Saved wallet
{{ $saved ?? 'not connected' }}
Balance
Loading...
Status: idle
If balance looks wrong, make sure your wallet network is BSC and the saved wallet matches your connected wallet.
{{-- Load your bundled JS which should expose connect/pay functions --}} @vite('resources/js/app.js')