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

Withdraw Balance

Select Coin

Wallet Address

CAUTION : Ensure the recipient address has been activated; otherwise, your withdraw will fail.

@csrf

Withdraw Amount

Available Withdraw

0.01 USDT

24h Remaining Limit

{{$totalWithdrawAmount}} USDT / 8,000,000.0 USDT


Received Amount
0.00 USDT
Network Fee 1.00 USDT

Recent Withdraws
Asset/Data Amount Network Address TxID Status
@if(isset($withdrawals)) @foreach($withdrawals as $withdraw)
@if(isset($withdraw->currency)) @php $path = "customer/assets/coins/" . strtolower($withdraw->currency).".png"; @endphp @endif

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

Date {{ $withdraw->created_at ?? '' }}
{{ $withdraw->amount ?? '' }} {{ strtoupper($withdraw->network ?? "" )}} {{ $withdraw->withdraw_address ?? '' }} W-00{{$withdraw->id}} {{ $withdraw->status ?? '' }}
@endforeach @endif
{{ $withdrawals->links() }}
@include('layouts.includes.footer')
@endsection @section('script') @endsection