@extends('layouts.usermaster') @section('styles') @endsection @section('content')

Quick Checkout

Enjoy peace of mind as you finalize your order with our secure payment process.

Ordered Item

@if (isset($transaction))
Invoice Summary
@php $subtotal = 0; @endphp @foreach ($transaction->customInvoiceElements as $elements) @php $subtotal += $elements->amount; @endphp @endforeach
Item Quantity Amount
{{ $elements->title }} {{ $elements->quantity }} {{ lang('Quantity') }} {{ getCurrencyPerTicket($elements->amount) }}
Subtotal : {{ getCurrencyPerTicket($subtotal) }}
Tax % : {{ $transaction->allInvoices->taxPercent != null ? $transaction->allInvoices->taxPercent : '-' }}
Total : {{ getCurrencyPerTicket($transaction->amount) }}
@php $enablePaypal = setting('enablePaypal'); $enableStripe = setting('enableStripe') @endphp
@csrf
@if ($enablePaypal == 'on')
@endif @if ($enableStripe == 'on')
@endif
@if ($enablePaypal == 'on' || $enableStripe == 'on')
@endif
@endif
@endsection @section('scripts') @endsection