@extends('frontend.frontend-page-master') @section('page-title') {{__('Order Confirm')}} @endsection @section('content')

{{__('Order Details')}}

@csrf @php $custom_fields = unserialize( $order_details->custom_fields); $payment_gateway = !empty($custom_fields['selected_payment_gateway']) ? $custom_fields['selected_payment_gateway'] : ''; $name = auth()->check() ? auth()->user()->name : ''; $email = auth()->check() ? auth()->user()->email :''; @endphp
@if($payment_gateway == 'manual_payment') @endif
{{__('Your Name')}}
{{__('Your Email')}}
{{__('Package Name')}} {{$order_details->package_name}}
{{__('Package Price')}} {{amount_with_currency_symbol($order_details->package_price)}} @if(!check_currency_support_by_payment_gateway($payment_gateway))
{{__('You will charge in '.get_charge_currency($payment_gateway).', you have to pay'. ' ')}} {{get_charge_amount($order_details->package_price,$payment_gateway).get_charge_currency($payment_gateway)}} @endif
{{__('Payment Gateway')}} @if($payment_gateway == 'manual_payment') {{get_static_option('site_manual_payment_name')}} @else {{$payment_gateway}} @endif
@if(!empty(get_static_option('manual_payment_gateway')))
{{__('Attach your bank Document')}}
{!! get_manual_payment_description() !!} @endif
@endsection @section('scripts') @if(!empty(get_static_option('site_google_captcha_v3_site_key')) && !empty(get_static_option('site_google_captcha_status'))) @endif @endsection