@extends('layouts.customer_template') @section('title') Bitbance Wallet @endsection @section('style') @endsection @section('content')

Estimated Balance

${{$balance_in_usd ?? 0}}

PNL @if($lossPercentage > 0)-@elseif($profitPercentage >= 0 )+@endif $ @if($balance_in_usd > 0) {{ abs($PNL)?? 0 }} @else 0 @endif @if($balance_in_usd > 0) @if($PNL > 0) (+{{$profitPercentage}}%) @else (-{{$lossPercentage}}%) @endif @else (0 %) @endif

@if(isset($currency_wallet_balances)) @foreach($currency_wallet_balances as $wallet) @if($wallet['wallet_balance'] && $wallet['wallet_balance'] > 0) @if($wallet['currency_name'] == "USDT" || $wallet['currency_name'] == "USDC" ) @else @endif @endif @endforeach @else @endif
Coin View Amount Coin Price/Cost Price PNL
{{$wallet['currency'] ?? ""}} {{$wallet['currency_name'] ?? ""}} {{round($wallet['wallet_balance'],2) ?? 0}} {{round($wallet['wallet_balance'],6) ?? 0}} @if($wallet['wallet_balance'] > 0) $ {{round(($wallet['wallet_balance'] * $wallet['currency_rate']),2)}} @else $ 0 @endif @if($wallet['pnl'] >= 0) + @else - @endif $ {{abs($wallet['pnl']) ?? 0}}
@include('layouts.includes.footer')
@endsection @section('script') @endsection