@extends('dashboard.layouts.main') @section('title', 'Core Mining ⛏️- AI Gold Mining ⛏️') @push('styles') @endpush @section('content')

Add Money

{{--
Deposit Banner
--}}

Selected Payment Method

@forelse($paymentMethods as $paymentMethod)
@if($paymentMethod->image) {{ $paymentMethod->account_type }} @else @if($paymentMethod->type === 'crypto') @else @endif @endif

{{ $paymentMethod->account_type }}

@empty

No payment methods available at the moment.

@endforelse

Deposit Amount

$
@if(!$conversionRate || $conversionRate == 0)
Note: Currency conversion rate is not set. Please contact admin.
@endif

Deposit Instructions

  • If the transfer time is up, please fill out the deposit form again.
  • The amount you send must be the same as your order.
  • Note: Don't cancel the deposit after sending the money.
  • Minimum deposit is $1

Deposit History

@forelse($deposits as $deposit)
@if($deposit->status === 'approved') @elseif($deposit->status === 'rejected') @else @endif

{{ $deposit->paymentMethod->account_type ?? 'Deposit' }}

{{ $deposit->created_at->format('M d, Y, h:i A') }}

+${{ number_format(sprintf('%.2f', (float)$deposit->amount), 2, '.', ',') }}
@if($deposit->status === 'approved')

Fund Wallet: ${{ number_format(sprintf('%.2f', (float)(auth()->user()->fund_wallet ?? 0)), 2, '.', ',') }}

@else

Fund Wallet: -

@endif @if($deposit->status === 'approved') Completed @elseif($deposit->status === 'rejected') Rejected @else Pending @endif
@empty @endforelse
No transaction history found!

Advance Search

@endsection