@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

Deposit Funds

Available Payment Method

@csrf

Enter amount

USDT

Deposit History

@forelse($deposits as $deposit) @empty

You have not yet deposited any funds!

@endforelse
Deposit Amount
Status
Actions

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

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

@endsection