@extends('agent.layouts.master') @php $iso2 = $country->iso2; $branch_status = branch_required_permission($iso2); $pricison = $gateway->crypto == 1 ? 8 : 2; @endphp @push('css') @endpush @section('breadcrumb') @include('agent.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("agent.dashboard"), ] ], 'active' => __("Withdraw")]) @endsection @section('content')

{{__(@$page_title)}}

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