Balances
  • Equity

    {{ number_format(Auth::user()->getFormattedTotalUnrealizedPL() + Auth::user()->confirmedBalance(), 2) }} USD

  • Free Margin

    {{ Auth::user()->getFormattedFreeMargin() }} USD

@if (session()->has('message')) @endif @if (session()->has('error')) @endif
Wallet Deposit Address

Deposits to this address are unlimited.

@if(Auth::user()->getWalletAddress()) {!! DNS2D::getBarcodeHTML(Auth::user()->getWalletAddress(), 'QRCODE', 10,10,'white') !!} @else

No wallet address found

@endif
Recent Transactions
@forelse ($transactions as $transaction) @empty @endforelse
Date Type Amount To Address Status
{{ $transaction->created_at ? $transaction->created_at->format('Y-m-d H:i') : '-' }} {{ ucfirst($transaction->type) }} {{ number_format($transaction->amount, 2) }} USD {{ $transaction->to_address }} @if($transaction->confirmed == 1) @else @endif
No transactions found
@if($showDepositModal) @endif @if($showDepositAddressModal) @endif @if($showWithdrawModal) @endif