@extends('seller.layouts.app') @section('main_content')

{{translate("Withdraw Method")}}

{{translate("Withdraw Method")}}
@forelse($withdrawMethods as $withdrawMethod)
{{$withdrawMethod->name}}
{{$withdrawMethod->image}}
{{translate('Method Details')}} :
  • {{translate('Withdraw Limit')}}
    {{round(($withdrawMethod->min_limit))}} - {{round(($withdrawMethod->max_limit))}} {{(default_currency()->name)}}
  • {{translate('Charge')}}
    {{round(($withdrawMethod->fixed_charge))}} {{(default_currency()->name)}} + {{round(($withdrawMethod->percent_charge))}} %
  • {{translate('Processing Time')}}
    {{$withdrawMethod->duration}} {{translate('Hour')}}
@empty
@include('admin.partials.not_found')
@endforelse
@endsection @push('script-push') @endpush