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

{{__(@$page_title)}}

!
@php echo @$gateway->desc; @endphp
@csrf
@foreach ($gateway->input_fields as $item) @if ($item->type == "select")
@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
!
{{__("Payment Information")}}
{{ __("Entered Amount") }}
{{ number_format(@$hasData->data->amount->requested_amount,$pricison )}} {{ @$hasData->data->amount->default_currency }}
{{ __("Exchange Rate") }}
{{ __("1") }} {{ get_default_currency_code() }} = {{ number_format(@$hasData->data->amount->sender_cur_rate,$pricison )}} {{ @$hasData->data->amount->sender_cur_code }}
{{ __("Total Fees & Charges") }}
{{ number_format(@$hasData->data->amount->total_charge,$pricison )}} {{ @$hasData->data->amount->sender_cur_code }}
{{ __("Will Get") }}
{{ number_format(@$hasData->data->amount->requested_amount,$pricison )}} {{ @$hasData->data->amount->default_currency }}
{{ __("Total Payable Amount") }}
{{ number_format(@$hasData->data->amount->total_amount,$pricison )}} {{ @$hasData->data->amount->sender_cur_code }}
@endsection @push('script') @endpush