@extends('layouts.customer_template') @section('title') Bitbance Exchange Balance @endsection @section('style') {{-- --}} @endsection @section('header-menu')
@endsection @section('content') {{--
--}}

Exchange Balance

Select Sell Coin

Select Buy Coin

@csrf

Buy/Sell Amount

Available Balance : $ 0

$ 0.00


Recent Exchange Balance History
Currency Amount Buy/Sell Type {{-- PType--}} Exchange Date
@if(isset($allTrades)) @foreach($allTrades as $exchange)
@if(isset($exchange->currency)) @php $path = "customer/assets/coins/" . strtolower($exchange->currency).".png"; @endphp @endif

{{ $exchange->currency ?? '' }}

{{-- Date {{ $exchange->created_at ?? '' }}--}}
@if($exchange->currency == "USDT" || $exchange->currency == "USDC" ) {{ round($exchange->amount,2) ?? 0 }} @else {{ round($exchange->amount,8) ?? 0 }} @endif @if(isset($exchange->type) && strtoupper($exchange->type) == "DEBIT") Buy @else Sell @endif {{-- {{ $exchange->payment_type ?? '' }}--}} {{ $exchange->created_at ?? '' }}
@endforeach @endif
{{ $allTrades->links() }}
@include('layouts.includes.footer')
@endsection @section('script') {{-- --}} @endsection