@lang("Public_ViewEvent.below_order_details_header")
@lang("Public_ViewEvent.order_summary")
@foreach($tickets as $ticket)
{{{$ticket['ticket']['title']}}} X {{$ticket['qty']}} |
@isFree($ticket['full_price'])
@lang("Public_ViewEvent.free")
@else
{{ money($ticket['full_price'], $event->currency) }}
@endif
|
@endforeach
@if($order_total > 0)
@endif
{!! @trans("Public_ViewEvent.time", ["time"=>""]) !!}
@if($order_requires_payment)
@include('Public.ViewEvent.Partials.OfflinePayments')
@endif
@if($order_requires_payment && $payment_gateway && View::exists($payment_gateway['checkout_blade_template']))
@include($payment_gateway['checkout_blade_template'])
@endif
@if(!$order_requires_payment)
@include('Public.ViewEvent.Partials.PaymentFree')
@endif