@lang("Public_ViewEvent.below_order_details_header")
@lang("Public_ViewEvent.order_summary")
@foreach($tickets as $ticket)
| {{{$ticket['ticket']['title']}}} X {{$ticket['qty']}} |
@if((int)ceil($ticket['full_price']) === 0)
@lang("Public_ViewEvent.free")
@else
{{ money($ticket['full_price'], $event->currency) }}
@endif
|
@endforeach
@if($order_total > 0)
@endif
{!! @trans("Public_ViewEvent.time", ["time"=>""]) !!}
{{ $payment_gateway->name }}
@if($order_requires_payment)
@include('Public.ViewEvent.Partials.OfflinePayments')
@endif
@if($payment_gateway->name == 'Stripe')
@include('Public.ViewEvent.Partials.PaymentStripe')
@endif
@if($payment_gateway->name == 'Stripe\PaymentIntents')
@include('Public.ViewEvent.Partials.PaymentStripeSCA')
@endif