@extends('merchant.layouts.master') @push('css') @endpush @section('breadcrumb') @include('merchant.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("merchant.dashboard"), ] ], 'active' => __("Withdraw")]) @endsection @section('content')

{{__(@$page_title)}}

!
@csrf
!
{{__("Withdraw Money Information!")}}
{{ __("Entered Amount") }}
{{ number_format(@$moneyOutData->amount,2 )}} {{ get_default_currency_code() }}
{{ __("Exchange Rate") }}
{{ __("1") }} {{ get_default_currency_code() }} = {{ number_format(@$moneyOutData->gateway_rate,2 )}} {{ @$moneyOutData->gateway_currency }}
{{ __("Conversion Amount") }}
{{ number_format(@$moneyOutData->conversion_amount,2 )}} {{ @$moneyOutData->gateway_currency }}
{{ __("Total Fees & Charges") }}
{{ number_format(@$moneyOutData->gateway_charge,2 )}} {{ @$moneyOutData->gateway_currency }}
{{ __("Will Get") }}
{{ number_format(@$moneyOutData->will_get,2 )}} {{ @$moneyOutData->gateway_currency }}
{{ __("Total Payable") }}
{{ number_format(@$moneyOutData->payable,2 )}} {{ get_default_currency_code() }}
@endsection @push('script') {{-- --}} @endpush