@php use App\Cart; use App\Enumerables\Currency; $currency = Currency::GBP; $currencySign = '£ '; if (isset($_COOKIE['currency']) && (int) $_COOKIE['currency'] != Currency::GBP) { $currency = Currency::CNY; $currencySign = '¥ '; } $prices = $prices ?? Cart::getCartPrices($items ?? [], true); @endphp
@if($currency == \App\Enumerables\Currency::GBP) @else @if($language == 'en') @else @endif @endif
{{__('contract-checkbox-text-1')}}{{__('contract-checkbox-text-2')}}{{__('contract-checkbox-text-3')}}
@include('order.components.cart_prices_list', [ 'currencySign' => $currencySign, 'prices' => $prices ])
{{__('select-coupon')}}
@if($currency == \App\Enumerables\Currency::GBP) {{__('pay-in-CNY')}} @else {{__('pay-in-GBP')}} @endif
{{ __('Back') }}
{{ __('confirm-pay') }}
@include('order.modals.contracts_modal') @include('order.modals.no_contracts_modal') @include('order.modals.discount_coupons_modal')