@extends('layouts.user') @section('title') Deposit Funds @endsection @section('content') @php $minDeposit = (float) (\App\Models\SiteDetail::where('title', 'min_deposit_amount')->value('description') ?? 20); @endphp
{{-- Sidebar --}}
{{-- Main content --}}
{{-- Balance tile --}}
Main Balance
${{ number_format(auth()->user()->balance, 2) }} USDT
{{ auth()->user()->balance > 0 ? 'Active' : 'Inactive' }} · {{ now()->format('d F Y') }}
{{-- Remvo Naira deposit hero (NG-gated; renders nothing for non-NG users) --}} @include('partials.remvo-deposit-hero') {{-- Deposit card --}}
Deposit USDT
{{-- ══ Tab bar ══ --}}
{{-- ══════════════════════════════════ AUTO TAB ══════════════════════════════════ --}}

Select network

{{-- SOL --}}
{{-- ETH disabled --}}
Unavailable USDT · ERC20 Ethereum network
ERC20 gateway is currently unavailable. Please use USDT · SOL to deposit.

Amount

$ USDT
Minimum deposit: ${{ number_format($minDeposit, 2) }} USDT
{{-- Auto flow steps --}}
{{-- /autoTab --}} {{-- ══════════════════════════════════ MANUAL TAB ══════════════════════════════════ --}} {{-- /manualTab --}}
{{-- Deposit history --}}
Deposit History
@forelse($deposits as $deposit) @empty @endforelse
Amount Net Method Status Date Action
+ {{ number_format($deposit->amount, 2) }} USDT {{ strtoupper($deposit->network ?? '—') }} @if($deposit->type === 'crypto_manual') Manual @else Auto @endif @if($deposit->status == 1) ✓ Done @elseif($deposit->status == 2) ✕ Failed @else ⏳ Pending @endif {{ $deposit->created_at->format('d M Y') }} @if($deposit->type === 'remvo_naira') Auto-credited @else View @endif
No deposits yet.
{{-- Lightweight QR library --}} @endsection