@extends('frontend.frontend-page-master') @section('page-title') {{__('Attendance Confirm')}} @endsection @section('breadcrumb')
  • {{get_static_option('events_page_'.$user_select_lang_slug.'_name')}}
  • {{get_static_option('events_page_'.$user_select_lang_slug.'_name').' '.__('Attendance Confirm')}}
  • @endsection @section('content')

    {{__('Attendance Details')}}

    @if($errors->any())
      @foreach($errors->all() as $error)
    • {{$error}}
    • @endforeach
    @endif
    @csrf @php $custom_fields = unserialize( $attendance_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')}}
    {{__('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
    {{__('Transaction ID')}}
    {!! get_static_option('site_manual_payment_description') !!}
    @endsection @section('scripts') @if(!empty(get_static_option('site_google_captcha_v3_site_key'))) @endif @endsection