@extends('layouts.dashly') @section('title', $title) @section('content')

Withdraw from your account.

Place a withdrawal request using any of the payment method below.

@forelse ($wmethods as $method)

{{ $method->name }}

{{ $settings->currency }}{{ number_format($method->maximum) }} Max


  • Minimum amount: {{ $settings->currency }}{{ number_format($method->minimum) }}
  • Charge Type: {{ $method->charges_type }}
  • Charges Amount: @if ($method->charges_type == 'percentage') {{ $method->charges_amount }}% @else {{ $settings->currency }}{{ $method->charges_amount }} @endif
  • Duration: {{ $method->duration }}
@if ($settings->enable_with == 'false') @else
@csrf
@endif
@empty

No withdrawal method enabled.

@endforelse
@endsection