@extends('layouts.app') @section('content')
@include('desktop.partials.runningtext') @include('desktop.partials.breadcrumb')
@if($pending && $pending->payment_type === 'withdraw' && $pending->status === 'pending')

Withdraw Pending

Permintaan withdraw anda sudah kami terima dan sedang diproses.

  • Nama Bank / E-Wallet

    {{ $pending->bank ?? '-' }}

  • Nama Rekening

    {{ $pending->account_name ?? '-' }}

  • Nomor Rekening

    {{ $pending->account_number ?? '-' }}

  • Jumlah Withdraw

    Rp {{ number_format($pending->amount, 0, ',', '.') }}

  • Status

    {{ strtoupper($pending->status ?? 'PENDING') }}

  • Tanggal

    {{ optional($pending->created_at)->format('d-m-Y H:i') }}

Jika withdraw anda belum diproses dalam beberapa waktu, silakan hubungi livechat untuk bantuan lebih lanjut.

@elseif(!$isAllowedWithdraw)

Saldo anda lebih rendah dari jumlah minimum penarikan.

@elseif(!($menu['withdraw_enabled'] ?? false))

Withdraw Anda Telah Dinonaktifkan Harap Hubungi Livechat.

@elseif(!$bank)

Rekening aktif tidak ditemukan. Silakan tambahkan rekening terlebih dahulu.

@else
@csrf
Pilih nominal
@foreach([25000, 50000, 100000, 1000000] as $amt)
@endforeach
@php $paymentMethod = $bank->payment_method ?? null; $paymentName = $paymentMethod === 'bank' ? ($bank->bank ?? '-') : ($bank->emoney ?? '-'); $rekening = strtoupper($bank->nomor_rekening ?? ''); $masked = strlen($rekening) > 4 ? str_repeat('*', strlen($rekening) - 4) . substr($rekening, -4) : $rekening; @endphp
Saldo akan ditransfer ke akun berikut
{{ strtoupper($paymentName) }} {{ strtoupper($bank->nama_rekening ?? '-') }} {{ $masked ?: '-' }}
Catatan
{{ $config->process_time ?? '5 Menit' }} Rp {{ number_format($config->withdraw_min ?? 25000, 0, ',', '.') }} Rp {{ number_format($config->withdraw_max ?? 5000000000, 0, ',', '.') }}
@endif
@endsection