@extends('dashboard.layouts.main') @section('title', 'Core Mining ⛏️- AI Gold Mining ⛏️') @push('styles') @endpush @section('content')
@if(session('error'))
{{ session('error') }}
@endif

Get Money

@if($hasPendingWithdrawal ?? false)

Pending Withdrawal Request

Please wait for your current withdrawal to be processed before submitting a new request.

@endif

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 withdrawal methods available at the moment.

@endforelse

Withdrawal Instructions

  • Please ensure your account details are correct before submitting a withdrawal request.
  • Withdrawal requests are processed within 24-48 hours during business days.
  • Note: Don't cancel the withdrawal request after submission.
  • Minimum withdrawal amount varies by payment method.

Withdrawal History

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

{{ $withdrawal->paymentMethod->account_type ?? 'Withdrawal' }}

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

{{--

{{ $withdrawal->account_holder_name ?? 'N/A' }} - {{ $withdrawal->account_number ?? 'N/A' }}

--}}
-${{ number_format($withdrawal->amount, 2) }}
@if($withdrawal->status === 'approved') Approved @elseif($withdrawal->status === 'rejected') Rejected @else Pending @endif @if($withdrawal->admin_proof_image) @endif
@empty @endforelse
No withdrawal history found!
× Proof Image

Advance Search

@endsection