@extends('themes.public.'.setting('active_public_theme').'.layouts.default') @section('content') @if(module_exists('store')) @push('custom-css') @endpush @endif

Checkout

@if(count($items) > 0)
@if($module === 'store') @endif @php $desc_title = __('payments.product_service_name'); if($module === 'booking_memberships' OR $module === 'memberships' OR $module === 'meeting_rooms') $desc_title = __('payments.reservation_details'); if($module === 'events') $desct_title = __('payments.event_details'); @endphp @if($discounts) @endif @if($module !== 'store' OR $total_vat > 0) @endif @if($module === 'store') @if($this->settings->get($module.'_product_shipping')) @endif @endif @php $i = 0; @endphp @foreach($items as $item) @if($i === 0) @if(setting('multihub') && isset($item['hub_id'])) @endif @endif @if($module === 'store') @endif @if($shipping) @else @endif @if($discounts) @if($item['discount'] > 0) @else @endif @endif @if($module !== 'store' OR $total_vat > 0) @endif @if($module === 'store') @if($this->settings->get($module.'_product_shipping')) @endif @endif @php $i++; @endphp @endforeach @php $extended = ''; $summary_shippings = ($module === 'store' && !$this->settings->get($module.'_product_shipping')) ? TRUE : FALSE; if($summary_shippings) $extended = 'shippings-summary-container'; @endphp
{{__('payments.actions')}}{{$desc_title}} {{__('payments.quantity')}} {{__('payments.price')}}{{__('payments.checkout_discount')}}{{__('payments.vat')}}{{__('payments.shipping')}}{{__('payments.subtotal')}}
{!!$item['name']!!}
{!!$item['description']!!}
1 to max order
{{__('payments.quantity')}}
{{$item['qty']}}
{{__('payments.price')}}
{{$currency->symbol}}{{number_format($item['price'],2)}}
{{__('payments.checkout_discount')}}
-{{$currency->symbol.number_format($item['discount'],2)}}
{{__('payments.checkout_discount')}}
N/A
{{__('payments.vat')}}
{{$currency->symbol}}{{number_format((($item['qty'] * $item['price']) * $item['vat_rate']) / 100,2)}} ({{$item['vat_rate']}}%)
{{__('payments.shipping')}}
{{$currency->symbol}}{{number_format($item['shipping'],2)}}
{{__('itemsubtotal')}}
{{$currency->symbol}}{{number_format($item['qty'] * $item['price'],2)}}
{{__('payments.subtotal')}}
{{$currency->symbol}}{{number_format($subtotal,2)}}
@if($discounts)
{{__('payments.discounts')}}
- {{$currency->symbol}}{{number_format($total_discounts,2)}}
@endif @if($shipping)
{{__('payments.shipping')}}
@if($summary_shippings) @php $sh = new Shipping(); $sh = $sh->where('active','yes')->get(); @endphp @if($sh->exists()) @endif @endif {{$currency->symbol}}{{number_format($total_shipping,2)}}
@endif @if($module !== 'store' OR $total_vat > 0)
{{__('payments.vat')}}
{{$currency->symbol}}{{number_format($total_vat,2)}}
@endif
{{__('payments.total')}}
{{$currency->symbol}}{{number_format($total,2)}}
@if($module === 'store' && !$free_of_charge)
{{__('payments.i_agree_to_the')}} {{__('payments.terms_conditions')}}
@endif
@else

{{__('payments.empty_cart')}}

{{__('payments.continue_shopping')}}
@php $back_link = (isset($_SERVER['HTTP_REFERER'])) ? $_SERVER['HTTP_REFERER'] : url(''); @endphp {{__('payments.go_back')}}
@endif
{{__('payments.billing_info')}}
@php $fn = $company_admin ? __('payments.company') : __('payments.first_name'); @endphp
@if($company_admin) @else
@endif
@if(!auth()->check()() && !$order_id) @endif
@if($module === 'booking_memberships' && !auth()->check()())
@endif @if($shipping)
@endif
@if(!auth()->check()())
@endif
@if($shipping)
{{__('payments.shipping_info')}}
@if($company_admin) @else @endif
@endif
@if(!$approval OR ($approval && $free_of_charge))
@if(!$free_of_charge) {!!Modules::run_with_params('payments/ajax/get_gateway',['l0@dD3f@u1t'])!!} @else {!!Modules::run_with_params('payments/ajax/get_gateway',['fr33ofch@r63'])!!} @endif
@endif @if($approval)
@if(setting('payments_approval_message')) {!! setting('payments_approval_message') !!} @else

{{__('payments.thank_you')}}

{{__('payments.free_order_success')}}

{{__('payments.reviewing_application')}}

{{__('payments.membership_application_emailed')}}

@endif @if(auth()->check()()) @if(setting('payments_checkout_member_redirect_link'))

{{setting('payments_checkout_member_redirect_link')}}

@else

Go To Dashboard

@endif @else @if(setting('payments_checkout_guest_redirect_link'))

{{setting('payments_checkout_guest_redirect_link')}}

@else

Home

@endif @endif
@else
@if(setting('payments_thank_you_message')) {!! setting('payments_thank_you_message') !!} @else

{{__('payments.thank_you')}}

@if($free_of_charge)

{{__('payments.free_order_success')}}

{{__('payments.free_order_success_checkemail')}}

@else

{{__('payments.order_success')}}

{{__('payments.order_success_checkemail')}}

@endif

{{__('payments.total_paid')}}:

{{__('payments.tx_id')}}:

@if(module_exists('credit_wallet'))

@endif @endif @if(auth()->check()()) @if(setting('payments_checkout_member_redirect_link'))

{{setting('payments_checkout_member_redirect_link')}}

@else

View Invoice

Go To Dashboard

@endif @else @if(setting('payments_checkout_guest_redirect_link'))

{{setting('payments_checkout_guest_redirect_link')}}

@else

Home

@endif @endif
@endif
@push('custom-js') @endpush @endsection