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

{{__(@$page_title)}}

!
@php echo @$gateway->desc; @endphp
@csrf
@foreach ($gateway->input_fields as $item) @if ($item->type == "select")
@error($item->name) {{ $message }} @enderror
@elseif ($item->type == "file")
@elseif ($item->type == "text")
@elseif ($item->type == "textarea")
@include('admin.components.form.textarea',[ 'label' => $item->label, 'name' => $item->name, 'value' => old($item->name), ])
@endif @endforeach
!
{{__("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