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

{{__('Order Details')}}

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif
@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
{{__('Transaction ID')}}
{!! get_manual_payment_description() !!}
@endsection