@extends('merchant.layouts.master') @php $iso2 = $country->iso2; $branch_status = branch_required_permission($iso2); $pricison = get_precision($gateway); $wallet_precison = $moneyOutData->charges['wallet_precision']; @endphp @push('css') @endpush @section('breadcrumb') @include('merchant.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("merchant.dashboard"), ] ], 'active' => __("Withdraw")]) @endsection @section('content')

{{__(@$page_title)}}

!
@csrf
{{-- call components --}} @if($country->currency_code == "USD") @include('merchant.sections.withdraw.automatic.flutterwave-country-component.usd-accounts') @elseif ($country->currency_code == "EUR" || $country->currency_code == "GBP" ) @include('merchant.sections.withdraw.automatic.flutterwave-country-component.eur-gbp-accounts') @elseif ($country->currency_code == "NGN") @include('merchant.sections.withdraw.automatic.flutterwave-country-component.ngn-accounts') @elseif ($country->currency_code == "ZAR") @include('merchant.sections.withdraw.automatic.flutterwave-country-component.zar-accounts') @elseif ($country->currency_code == "TZS") @include('merchant.sections.withdraw.automatic.flutterwave-country-component.tzs-accounts') @elseif ($country->currency_code == "KES") @include('merchant.sections.withdraw.automatic.flutterwave-country-component.kes-accounts') @else @include('merchant.sections.withdraw.automatic.flutterwave-country-component.african-accounts') @endif
!
{{__("Withdraw Money Information!")}}
{{ __("Entered Amount") }}
{{ get_amount($moneyOutData->amount,$moneyOutData->charges['wallet_cur_code']??get_default_currency_code(),$wallet_precison)}}
{{ __("Exchange Rate") }}
{{ __("1") }} {{ $moneyOutData->charges['wallet_cur_code']??get_default_currency_code() }} = {{ get_amount($moneyOutData->charges['exchange_rate']??$moneyOutData->gateway_rate,$moneyOutData->charges['gateway_cur_code']??$moneyOutData->gateway_currency,$pricison)}}
{{ __("Conversion Amount") }}
{{ get_amount($moneyOutData->charges['conversion_amount']??$moneyOutData->conversion_amount,$moneyOutData->charges['gateway_cur_code']??$moneyOutData->gateway_currency,$pricison)}}
{{ __("Total Fees & Charges") }}
{{ get_amount($moneyOutData->charges['total_charge']??$moneyOutData->gateway_charge,$moneyOutData->charges['wallet_cur_code']??$moneyOutData->gateway_currency,$wallet_precison)}}
{{ __("Will Get") }}
{{ get_amount($moneyOutData->charges['conversion_amount']??$moneyOutData->conversion_amount,$moneyOutData->charges['gateway_cur_code']??$moneyOutData->gateway_currency,$pricison)}}
{{ __("Total Payable") }}
{{ get_amount($moneyOutData->charges['payable']??$moneyOutData->payable,$moneyOutData->charges['wallet_cur_code']??get_default_currency_code(),$wallet_precison)}}
@endsection @push('script') @endpush