@extends('layouts.user') @section('title') Deposit Funds @endsection @section('content')
{{ auth()->user()->username }}

{{ auth()->user()->email }}

Rebate Bonus

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

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

Withdraw From Rebate Bonus

{{--

Available Payment Method

--}}

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

@csrf

Enter amount

$

Rebate Withdrawal Charges ({{ $charge * 100 }}%):

My Withdrawal History
{{----}} @foreach($withdrawals as $withdrawal) @if($withdrawal->status == 1) @elseif($withdrawal->status == 2) @else @endif {{----}} @endforeach
Amount Status DateAction
- USDT {{ number_format($withdrawal->amount, 2) }}Pending...ApprovedFailed{{ $withdrawal->created_at->format('d F Y') }}View
@endsection