@extends('layouts.user') @section('content')

Main Balance

${{ number_format(auth()->user()->balance, 2) }} USDT

{{ now()->format('d F Y') }} @if(auth()->user()->balance > 0) Active @else In-Active @endif

Withdraw Funds

{{--

Available Payment Method

--}}

You can't make a withdrawal of any amount below ${{ $minWithdraw->description }}.

@csrf

Enter amount

USDT

Withdrawal Charges:

Withdrawal History

@forelse($withdrawals as $withdrawal) @empty

You have not yet deposited any funds!

@endforelse
Withdrawal Amount
Status
Date

- USDT {{ number_format($withdrawal->amount, 2) }}

@if($withdrawal->status == 1) Pending... @elseif($withdrawal->status == 2) Approved @else Failed @endif

{{ $withdrawal->created_at->format('d F Y') }}

@endsection