@extends('agent.layouts.master') @push('css') @endpush @section('breadcrumb') @include('agent.components.breadcrumb',['breadcrumbs' => [ [ 'name' => __("Dashboard"), 'url' => setRoute("agent.dashboard"), ] ], 'active' => __("Withdraw")]) @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 Information")}}
{{ __("Entered Amount") }}
{{ number_format(@$moneyOutData->amount,2 )}} {{@$moneyOutData->charges->wallet_cur_code}}
{{ __("Exchange Rate") }}
{{ __("1") }} {{ $moneyOutData->charges->wallet_cur_code }} = {{ number_format(@$moneyOutData->charges->exchange_rate,4 )}} {{ @$moneyOutData->charges->gateway_cur_code }}
{{ __("Conversion Amount") }}
{{ number_format(@$moneyOutData->charges->conversion_amount,2 )}} {{ @$moneyOutData->charges->gateway_cur_code }}
{{ __("Total Fees & Charges") }}
{{ number_format(@$moneyOutData->charges->total_charge,2 )}} {{ @$moneyOutData->charges->gateway_cur_code }}
{{ __("Will Get") }}
{{ number_format(@$moneyOutData->charges->will_get,2 )}} {{ @$moneyOutData->charges->gateway_cur_code }}
{{ __("Total Payable") }}
{{ number_format(@$moneyOutData->charges->payable,2 )}} {{ @$moneyOutData->charges->wallet_cur_code }}
@endsection @push('script') @endpush