@extends('user.layout') @section('title','Withdraw') @section('content') @php $currentEarningBalance = (float) (auth()->user()->balance ?? 0); $currentVoucherBalance = (float) (auth()->user()->voucher_balance ?? 0); $minAmount = (float) ($setting->min_withdraw_amount ?? 100); $maxAmount = (float) ($setting->max_withdraw_amount ?? 50000); $chargeType = $setting->withdraw_charge_type ?? 'percent'; $chargeValue = (float) ($setting->withdraw_charge_value ?? 2); $minKeepBalance = (float) ($setting->min_keep_balance ?? 10); $chargeText = $chargeType === 'flat' ? '৳' . number_format($chargeValue, 2) : rtrim(rtrim(number_format($chargeValue, 2), '0'), '.') . '%'; @endphp
{{-- BANNER --}}
পেমেন্ট মাধ্যম সিলেক্ট করুন

টাকা উইথড্র করুন

সহজ ও নিরাপদ পেমেন্ট সুবিধা
{{-- HISTORY BUTTON --}} Withdraw History {{-- OFF NOTICE --}} @if(!(bool)($setting->is_enabled ?? true))
{{ $setting->off_notice_title ?? 'বর্তমানে উইথড্র সেবাটি বন্ধ রয়েছে' }}
{{ $setting->off_notice_description ?? 'অনুগ্রহ করে পরে আবার চেষ্টা করুন।' }}
@endif {{-- SUCCESS POPUP --}} @if(session('withdraw_success')) @php $ws = session('withdraw_success'); @endphp
{{-- Logo --}} {{-- Brand Title --}} {{-- Checkmark --}} {{-- Title --}} {{-- Sub Title --}} {{-- Transaction Details --}} {{-- Close Button --}}
@endif {{-- ERROR NOTICE --}} @if($errors->any())
সমস্যা হয়েছে
@foreach($errors->all() as $error)
• {{ $error }}
@endforeach
@endif
@csrf {{-- WALLET SELECTION --}}
সিলেক্ট ওয়ালেট নির্বাচন করুন
Earning Balance
৳{{ number_format($currentEarningBalance, 2) }}
Voucher Balance
৳{{ number_format($currentVoucherBalance, 2) }}
{{-- WITHDRAW METHOD --}}
পেমেন্ট মেথড সিলেক্ট করুন
@forelse($methods as $m)
@if($m->logo) {{ $m->name }} @else @endif
{{ $m->name }}
@empty
কোনো withdraw method পাওয়া যায়নি।
@endforelse
{{-- METHOD FIELDS --}} @foreach($methods as $m) @if($m->fields->count()) @endif @endforeach {{-- AMOUNT --}}
উইথড্র আমাউন্ট পরিমাণ
মিনিমাম {{ number_format($minAmount,0) }} ৳ এবং ম্যাক্সিমাম {{ number_format($maxAmount,0) }} ৳
চার্জ: {{ $chargeText }} | রাখতে হবে: ৳{{ number_format($minKeepBalance,2) }} @if(!empty($setting->payment_time_text))
{{ $setting->payment_time_text }} @endif
{{-- SUMMARY --}}
উইথড্র আমাউন্ট ৳0.00
চার্জ ({{ $chargeText }}) ৳0.00
মোট কাটবে ৳0.00
বর্তমান ব্যালেন্স ৳0.00
উইথড্র পর ব্যালেন্স ৳0.00
{{-- PIN --}}
সিকিউরিটি পিন নিশ্চিত করুন
{{-- SUBMIT --}}
@endsection