@extends('layouts.user') @push('css') @endpush @section('contents')
@foreach ($methods as $key=>$data)
{{ucfirst($data->name)}}
payment
  • @lang('Withdraw Amount') {{ $data->min_amount }} {{ optional($data->currency)->name ?? 'USD' }} - {{ $data->max_amount }} {{ optional($data->currency)->name }}
  • @lang('Total Fixed Charge') {{ $data->fixed }} {{ optional($data->currency)->name }}
  • @lang('Total Percentage Charge') {{ $data->percentage }} %
@endforeach
@if (count($withdraws) == 0) @else @foreach ($withdraws as $key=>$data) @endforeach @endif
@lang('Buyer') @lang('Payment Method') @lang('Amount') @lang('Fee') @lang('Status') @lang('Options')

{{__('No Data Found')}}

clients
{{ auth()->user()->name }}
{{ ucfirst($data->method) }}
{{ convertedPrice($data->amount,$data->currency_id) }}
{{ convertedPrice($data->fee,$data->currency_id) }}
@if ($data->status == 'pending') @lang('Pending') @elseif($data->status == 'completed') @lang('Completed') @else @lang('Rejected') @endif
@endsection @push('js') @endpush