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

{{__('Attendance Confirm')}}

@csrf @php $custom_fields = unserialize( $attendance_details->custom_fields,['class' => false]); $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')}}
{{__('Event Name')}} {{$attendance_details->event_name}}
{{__('Event Cost')}} {{amount_with_currency_symbol($attendance_details->event_cost * $attendance_details->quantity)}} @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($attendance_details->event_cost * $attendance_details->quantity,$payment_gateway).get_charge_currency($payment_gateway)}} @endif
{{__('Quantity')}} {{$attendance_details->quantity}}
{{__('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