@extends($user_shop ?'web.user.layouts.layout' : 'web.layouts.layout') @section('content') {{-- dark overlay [1 to 9 opacity] --}} {{-- /PAGE HEADER --}} @if ($errors->any()) {{ __('payment.please_check_form_and_complete') }} @endif @if (\Session::has('checkout-error')) {{ \Session::get('checkout-error') }} @endif @if (\Session::has('errormessage')) {{ __('payment.payment_error') }} @if(\Session::get('customermessage')) {{ \Session::get('customermessage') }} @endif {{ __('payment.payment_error_hint') }} @endif @if(isset($instance_status) && $instance_status) {!! \App\Services\OrderPaymentService::getStatusAlert($instance_status) !!} @endif {{-- LEFT --}} {!! __('order.you_has_article_in_shopping_cart', ['num'=> Yard::instance($yard_instance)->count() ]) !!} {{ __('order.article') }} {{ __('order.unit_price') }} {{ __('tables.quantity') }} {{ __('tables.sum') }} @if(Yard::instance($yard_instance)->content() && Yard::instance($yard_instance)->content()->count()) @foreach(Yard::instance($yard_instance)->content() as $row) @php($product = \App\Models\Product::find($row->id)) @if($product) @if($row->options->has('image')) @else @endif {{ $row->name }} @if(isset($is_abo) && $is_abo) {!! get_abo_type_badge_by_product($product) !!} @endif {{ __('order.content') }}: {{ $product->contents }} {{ __('order.art_no') }}: {{ $product->number }} {{ __('weborder.delivery_time_1_3') }} {{ $product->getBasePriceFormattedFullWith(Yard::instance($yard_instance)->getUserTaxFree(), false, Yard::instance($yard_instance)->getUserCountry()) }} @if(Yard::instance($yard_instance)->getUserTaxFree()) * {{ __('order.net_price') }} @else * {{ __('weborder.incl') }} {{ number_format($row->taxRate, 0)}}% {{ __('weborder.VAT') }} @endif @if(Yard::instance($yard_instance)->getShippingFree() && $row->options->no_free_shipping) **{{ __('weborder.not_free_shipping') }} @endif {{ $row->price() }} € {{ Yard::instance($yard_instance)->getUserTaxFree() }} @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('price', $row, 2) }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ $row->qty }} {{ $row->subtotal() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('subtotal', $row, 2) }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif @else {{ $row->name }} {{ $row->price() }} € {{ $row->qty }} {{ $row->subtotal() }} € @endif @endforeach @if($shopping_user->is_from !== 'homeparty' && $shopping_user->is_from !== 'collection') {{ __('order.subtotal') }}: {{ Yard::instance($yard_instance)->subtotal() }} € {{ __('Delivery country') }}: {{ Yard::instance($yard_instance)->getShippingCountryName() }} {{ __('order.shipping_costs') }}: {{ Yard::instance($yard_instance)->shipping() }} € @if(Yard::instance($yard_instance)->getUserTaxFree()) {{ __('order.sum_net') }}: {{ Yard::instance($yard_instance)->subtotalWithShipping() }} € @else {{ __('order.total_without_VAT') }}: {{ Yard::instance($yard_instance)->subtotalWithShipping() }} € {{ __('order.plus_VAT') }}: {{ Yard::instance($yard_instance)->taxWithShipping() }} € @endif @endif {{ __('order.total_sum') }}: {{ Yard::instance($yard_instance)->totalWithShipping() }} € @endif {!! Form::open(['action' => route('checkout.checkout_card_final'), 'class' => 'row clearfix', 'id'=>'checkout_card_final']) !!} {!! Form::hidden('selected_country', '') !!} {!! Form::hidden('is_for', $shopping_user->is_for) !!} {!! Form::hidden('is_from', $shopping_user->is_from) !!} {!! Form::hidden('homeparty_id', $shopping_user->homeparty_id) !!} {!! Form::hidden('shopping_collect_order_id', $shopping_user->shopping_collect_order_id) !!} {!! Form::hidden('is_abo', $is_abo) !!} {!! Form::hidden('abo_interval', $abo_interval) !!} @if (\Session::has('elv-managemandate')) {{ __('payment.agree_SEPA_complete_purchase') }} {!! urldecode(\Session::get('elv-mandate_text')) !!} {{ __('payment.agree_SEPA_complete_purchase') }} @endif {{-- BILLING --}} {{ __('payment.billing_address') }} @if($is_from === 'shopping') {{ __('Company name') }} ({{__('optional')}}) {!! Form::text('billing_company', $shopping_user->billing_company, ['class' => 'form-control', 'id'=>'billing_company']) !!} {{ __('Salutation') }} * {!! HTMLHelper::getSalutation(($shopping_user->billing_salutation ? $shopping_user->billing_salutation : old('billing_salutation'))) !!} @if ($errors->has('billing_salutation')) {{ $errors->first('billing_salutation') }} @endif {{ __('First name') }}* {!! Form::text('billing_firstname', $shopping_user->billing_firstname, ['class' => 'form-control '.($errors->has('billing_firstname') ? 'error' : ''), 'id'=>'billing_firstname']) !!} @if ($errors->has('billing_firstname')) {{ $errors->first('billing_firstname') }} @endif {{ __('Last name') }}* {!! Form::text('billing_lastname', $shopping_user->billing_lastname, ['class' => 'form-control '.($errors->has('billing_lastname') ? 'error' : ''), 'id'=>'billing_lastname']) !!} @if ($errors->has('billing_lastname')) {{ $errors->first('billing_lastname') }} @endif {{ __('Street') }} {{ __('no.') }}* {!! Form::text('billing_address', $shopping_user->billing_address, ['class' => 'form-control '.($errors->has('billing_address') ? 'error' : ''), 'id'=>'billing_address']) !!} @if ($errors->has('billing_address')) {{ $errors->first('billing_address') }} @endif {{ __('Flat Building optional') }} {!! Form::text('billing_address_2', $shopping_user->billing_address_2, ['class' => 'form-control '.($errors->has('billing_address_2') ? 'error' : ''), 'id'=>'billing_address_2']) !!} @if ($errors->has('billing_address_2')) {{ $errors->first('billing_address_2') }} @endif {{ __('Postcode') }} * {!! Form::text('billing_zipcode', $shopping_user->billing_zipcode, ['class' => 'form-control '.($errors->has('billing_zipcode') ? 'error' : ''), 'id'=>'billing_zipcode']) !!} @if ($errors->has('billing_zipcode')) {{ $errors->first('billing_zipcode') }} @endif {{ __('City') }} * {!! Form::text('billing_city', $shopping_user->billing_city, ['class' => 'form-control '.($errors->has('billing_city') ? 'error' : ''), 'id'=>'billing_city']) !!} @if ($errors->has('billing_city')) {{ $errors->first('billing_city') }} @endif {!! Form::hidden('billing_state', $shopping_user->billing_state) !!} {!! Form::hidden('billing_country_id', \App\Services\Shop::getShippingCountryCountryId($shopping_user->billing_state)) !!} {{ __('Country') }} * @if(isset($shopping_user->billing_country)) {{ $shopping_user->billing_country->getLocated() }} @else - @endif {{ __('order.land_can_no_longer_be_changed') }}. {{-- {{ __('Country') }} * {!! HTMLHelper::getCountriesForShipping($shopping_user->billing_state) !!} Bei der Änderung des Lieferlandes werden die Versandkosten neu berechnet. --}} {{ __('Phone') }} ({{ __('optional') }}) {!! Form::text('billing_phone', $shopping_user->billing_phone, ['class' => 'form-control '.($errors->has('billing_phone') ? 'error' : ''), 'id'=>'billing_phone']) !!} @if ($errors->has('billing_phone')) {{ $errors->first('billing_phone') }} @endif {{ __('E-Mail') }} * @if($is_for === 'ot-customer' || $is_for === 'abo-ot-customer') {!! Form::email('billing_email', $shopping_user->billing_email, ['class' => 'form-control '.($errors->has('billing_email') ? 'error' : ''), 'id'=>'billing_email', 'readonly' => 'readonly']) !!} {{ __('order.email_can_not_be_changed') }}. @else {!! Form::email('billing_email', $shopping_user->billing_email, ['class' => 'form-control '.($errors->has('billing_email') ? 'error' : ''), 'id'=>'billing_email']) !!} @endif @if ($errors->has('billing_email')) {{ $errors->first('billing_email') }} @endif {{ __('account.preferred_language') }} @foreach(\App\Models\ShoppingUser::getAvailableLanguages() as $code => $label) language === $code ? 'selected' : '' }}> {{ $label }} @endforeach {{ __('customer.language_hint') }} @else {!! Form::hidden('billing_company', $shopping_user->billing_company) !!} {!! Form::hidden('billing_salutation', $shopping_user->billing_salutation) !!} {!! Form::hidden('billing_firstname', $shopping_user->billing_firstname) !!} {!! Form::hidden('billing_lastname', $shopping_user->billing_lastname) !!} {!! Form::hidden('billing_address', $shopping_user->billing_address) !!} {!! Form::hidden('billing_address_2', $shopping_user->billing_address_2) !!} {!! Form::hidden('billing_zipcode', $shopping_user->billing_zipcode) !!} {!! Form::hidden('billing_city', $shopping_user->billing_city) !!} {!! Form::hidden('billing_phone', $shopping_user->billing_phone) !!} {!! Form::hidden('billing_email', $shopping_user->billing_email) !!} {!! Form::hidden('billing_state', $shopping_user->billing_state) !!} {!! Form::hidden('billing_country_id', $shopping_user->billing_country_id) !!} @if($shopping_user->billing_company) {{ __('Company') }} {{ $shopping_user->billing_company }} @endif {{ __('Salutation') }} {{ \App\Services\HTMLHelper::getSalutationLang($shopping_user->billing_salutation) }} {{ __('First name') }} {{ $shopping_user->billing_firstname }} {{ __('Last name') }} {{ $shopping_user->billing_lastname }} {{ __('Street') }} {{ $shopping_user->billing_address }} {{ __('Addition') }} {{ $shopping_user->billing_address_2 }} {{ __('Postcode') }} {{ $shopping_user->billing_zipcode }} {{ __('City') }} {{ $shopping_user->billing_city }} {{ __('Country') }} {{ $shopping_user->billing_country->getLocated() }} {{ __('Phone') }} {{ $shopping_user->billing_phone }} {{ __('E-Mail') }} {{ $shopping_user->billing_email }} {{ __('payment.billing_address_can_only_changed_in_salescentre') }} {{ __('account.preferred_language') }} @foreach(\App\Models\ShoppingUser::getAvailableLanguages() as $code => $label) language === $code ? 'selected' : '' }}> {{ $label }} @endforeach {{ __('customer.language_hint') }} @endif {!! Form::checkbox('accepted_data_checkbox', 1, $shopping_user->accepted_data_checkbox, ['id'=>'accepted_data_checkbox', 'class' => 'form-control '.($errors->has('accepted_data_checkbox') ? 'error' : '')]) !!} @if($shopping_user->auth_user_id) {{ __('payment.accepted_data_checkbox_user') }} @else {!! __('payment.accepted_data_checkbox_customer', [ 'gtc'=> ''.__('payment.gtc').'', 'c_policy' => ''.__('payment.c_policy').'', 'p_policy'=> ''.__('payment.p_policy').'', ]) !!} @endif @if ($errors->has('accepted_data_checkbox')) {{ $errors->first('accepted_data_checkbox') }} @endif @if($shopping_user->is_from !== 'homeparty' && $shopping_user->is_from !== 'collection') @if($shopping_user->is_from === 'membership' || $shopping_user->is_from === 'wizard') {!! Form::hidden('same_as_billing', $shopping_user->same_as_billing) !!} {!! Form::checkbox('same_as_billing', 1, $shopping_user->same_as_billing, ['id'=>'shipswitch', 'disabled'=>true]) !!} {{ __('order.different_delivery_address') }} @else @if($is_from === 'user_order') {!! Form::hidden('same_as_billing', $shopping_user->same_as_billing) !!} @endif {!! Form::checkbox('same_as_billing', 1, $shopping_user->same_as_billing, ['id'=>'shipswitch']) !!} {{ __('order.different_delivery_address') }} @endif @endif {{-- /BILLING --}} {{-- SHIPPING --}} @if($shopping_user->is_from === 'user_order') @if($shopping_user->is_for === 'me') {{ __('order.my_delivery_address') }} @else {{ __('order.delivery_address_of_the_client') }} @endif @else {{ __('Delivery address') }} @endif {{ __('Company name') }} ({{ __('optional') }}) {!! Form::text('shipping_company', $shopping_user->shipping_company, ['class' => 'form-control', 'id'=>'shipping_company']) !!} {{ __('Salutation') }} * {!! HTMLHelper::getSalutation(($shopping_user->shipping_salutation ? $shopping_user->shipping_salutation : old('shipping_salutation'))) !!} @if ($errors->has('shipping_salutation')) {{ $errors->first('shipping_salutation') }} @endif {{ __('First name') }}* {!! Form::text('shipping_firstname', $shopping_user->shipping_firstname, ['class' => 'form-control '.($errors->has('shipping_firstname') ? 'error' : ''), 'id'=>'shipping_firstname']) !!} @if ($errors->has('shipping_firstname')) {{ $errors->first('shipping_firstname') }} @endif {{ __('Last name') }}* {!! Form::text('shipping_lastname', $shopping_user->shipping_lastname, ['class' => 'form-control '.($errors->has('shipping_lastname') ? 'error' : ''), 'id'=>'shipping_lastname']) !!} @if ($errors->has('shipping_lastname')) {{ $errors->first('shipping_lastname') }} @endif {{ __('Street') }} {{ __('no.') }} * {!! Form::text('shipping_address', $shopping_user->shipping_address, ['class' => 'form-control '.($errors->has('shipping_address') ? 'error' : ''), 'id'=>'shipping_address']) !!} @if ($errors->has('shipping_address')) {{ $errors->first('shipping_address') }} @endif {{ __('Flat Building optional') }} {!! Form::text('shipping_address_2', $shopping_user->shipping_address_2, ['class' => 'form-control '.($errors->has('shipping_address_2') ? 'error' : ''), 'id'=>'shipping_address_2']) !!} @if ($errors->has('shipping_address_2')) {{ $errors->first('shipping_address_2') }} @endif {{ __('Postcode') }} * {!! Form::text('shipping_zipcode', $shopping_user->shipping_zipcode, ['class' => 'form-control '.($errors->has('shipping_zipcode') ? 'error' : ''), 'id'=>'shipping_zipcode']) !!} @if ($errors->has('shipping_zipcode')) {{ $errors->first('shipping_zipcode') }} @endif {{ __('City') }} * {!! Form::text('shipping_city', $shopping_user->shipping_city, ['class' => 'form-control '.($errors->has('shipping_city') ? 'error' : ''), 'id'=>'shipping_city']) !!} @if ($errors->has('shipping_city')) {{ $errors->first('shipping_city') }} @endif @if($is_from === 'user_order') {!! Form::hidden('shipping_state', $shopping_user->shipping_state) !!} {!! Form::hidden('shipping_country_id', \App\Services\Shop::getShippingCountryCountryId($shopping_user->shipping_state)) !!} {{ __('Delivery country') }} * @if(isset($shopping_user->shipping_country)) {{ $shopping_user->shipping_country->getLocated() }} @else - @endif {{ __('payment.delivery_country_can_only_changed_in_salescentre') }} @else {!! Form::hidden('shipping_state', $shopping_user->shipping_state) !!} {!! Form::hidden('shipping_country_id', \App\Services\Shop::getShippingCountryCountryId($shopping_user->shipping_state)) !!} {{ __('Delivery country') }} * @if(isset($shopping_user->shipping_country)) {{ $shopping_user->shipping_country->getLocated() }} @else - @endif @if($is_from === 'membership' || $is_from === 'wizard') {{ __('payment.delivery_country_can_only_changed_in_salescentre') }} @else {{ __('payment.delivery_country_cannot_change') }} @endif @endif {{ __('Phone') }} ({{ __('optional') }}) {!! Form::text('shipping_phone', $shopping_user->shipping_phone, ['class' => 'form-control '.($errors->has('shipping_phone') ? 'error' : ''), 'id'=>'shipping_phone']) !!} @if ($errors->has('shipping_phone')) {{ $errors->first('shipping_phone') }} @endif {{-- DHL Packstation/Paketbox --}} {{ __('payment.packstation_delivery') }} {{ __('payment.packstation_info') }} {{ __('payment.dhl_postnumber') }} ({{ __('optional') }}) {!! Form::text('shipping_postnumber', $shopping_user->shipping_postnumber, ['class' => 'form-control '.($errors->has('shipping_postnumber') ? 'error' : ''), 'id'=>'shipping_postnumber', 'placeholder' => '12345678', 'maxlength' => '20']) !!} @if ($errors->has('shipping_postnumber')) {{ $errors->first('shipping_postnumber') }} @endif {{-- Alert-Box für Packstation-Hinweis --}} × {{ __('payment.packstation_alert_title') }} {{ __('payment.packstation_alert_intro') }} {{ __('Street') }} / {{ __('House number') }}: {{ __('payment.packstation_alert_street') }} ({{ __('payment.packstation_alert_street_example') }}) {{ __('Postcode') }} / {{ __('City') }}: {{ __('payment.packstation_alert_location') }} ({{ __('payment.packstation_alert_not_home') }}) {{ __('payment.packstation_alert_footer') }} {{-- /SHIPPING --}} @if(Util::getUserPaymentFor($yard_instance) != 6) @if(isset($order_reference)) {{ __('payment.back_to_shop') }} @else @if(Util::getUserPaymentFor($yard_instance) > 1) {{ __('back') }} {{ Util::getMyMivitaUrl(false) }} @else {{ __('payment.back_to_shop_shopping_cart') }} @endif @endif @endif @if($shopping_mode === 'test') #### TEST MODE #### TEST MODE #### @endif {{-- PAYMENT METHOD --}} @if(!$is_abo) {{ __('payment.payment_method') }} @else {{ __('abo.payment_for_abo') }} @endif @if(($shopping_user->abo_options === 1) && (Util::getUserPaymentFor() >= 3)) @if(array_key_exists('SEPA', $payment_methods_active) && in_array($payment_methods_active['SEPA'], $payment_methods)) {!! Form::radio('payment_method', 'elv', '1') !!} {{ __('payment.sepa_direct_debit') }} @else {{ __('payment.payment_method_not_enabled_please_contact') }} {{ config('app.default_mail') }} @endif @else @if(array_key_exists('PP', $payment_methods_active) && in_array($payment_methods_active['PP'], $payment_methods)) {!! Form::radio('payment_method', 'wlt#PPE', (!old('payment_method') ? '1' : '')) !!} {{ __('payment.paypal') }} @endif @if(array_key_exists('CC', $payment_methods_active) && in_array($payment_methods_active['CC'], $payment_methods)) {!! Form::radio('payment_method', 'cc', '') !!} {{ __('payment.credit_card') }} @endif @if(array_key_exists('SB', $payment_methods_active) && in_array($payment_methods_active['SB'], $payment_methods)) {!! Form::radio('payment_method', 'sb#PNT', '') !!} {{ __('payment.sofort_bank_transfer') }} @endif @if(array_key_exists('SEPA', $payment_methods_active) && in_array($payment_methods_active['SEPA'], $payment_methods)) {!! Form::radio('payment_method', 'elv', '') !!} {{ __('payment.sepa_direct_debit') }} @endif @if(array_key_exists('VOR', $payment_methods_active) && in_array($payment_methods_active['VOR'], $payment_methods)) {!! Form::radio('payment_method', 'vor', '') !!} {{ __('payment.prepayment') }} @endif @if(array_key_exists('FNC', $payment_methods_active) && in_array($payment_methods_active['FNC'], $payment_methods)) {!! Form::radio('payment_method', 'fnc#MIV', '') !!} {{ __('payment.purchase_on_account') }} @endif @endif {{-- /PAYMENT METHOD --}} {{-- ABO INFOS --}} @if($is_abo) {{ __('abo.abo_delivery') }} {!! __('abo.abo_order_info_check') !!} {!! __('abo.abo_order_info_check_2') !!} {!! __('abo.abo_order_info_check_3', ['abo-min-duration' => \App\Models\Setting::getContentBySlug('abo-min-duration')]) !!} {{ now()->format('d.m.Y') }} {{ __('abo.abo_first_execution_date') }}: {{ HTMLHelper::getAboStrLang($abo_interval) }} {{ __('abo.abo_delivery_intervall') }}: {{ HTMLHelper::getAboFirstExecutionDate(now(), $abo_interval) }} {{ __('abo.abo_next_execution_date') }}: @endif {{-- ABO INFOS END --}} {{-- PAYMENT METHOD SEPA--}} {{ __('payment.sepa_direct_debit') }} {{ __('payment.owner') }}* {!! Form::text('elv_bankaccountholder', (isset($payment_data['bankaccountholder']) ? $payment_data['bankaccountholder'] : ''), ['class' => 'form-control', 'id'=>'elv_bankaccountholder', 'placeholder'=>__('payment.firstname_lastname')]) !!} {{ __('payment.IBAN') }}* {!! Form::text('elv_iban', (isset($payment_data['iban']) ? $payment_data['iban'] : ''), ['class' => 'form-control', 'id'=>'elv_iban', 'placeholder'=>'Beisp.: DE02120300000000202051']) !!} {{ __('payment.BIC') }}* {!! Form::text('elv_bic', (isset($payment_data['bic']) ? $payment_data['bic'] : ''), ['class' => 'form-control', 'id'=>'elv_bic', 'placeholder'=>'Beisp.: PBNKDEFF']) !!} {{-- @if($shopping_user->abo_options) {{ __('payment.automatic_SEPA_mandate_type_was_selected') }} @endif --}} {{-- TOTAL / PLACE ORDER --}} {{-- PAYMENT METHOD CC --}} {{ __('payment.credit_card') }} {{ __('payment.credit_card') }}* {{ __('payment.VISA') }} {{ __('payment.Mastercard') }} {{-- {{ __('payment.American Express') }} --}} {{ __('payment.owner') }}* {!! Form::text('cc_cardholder_first', '', ['class' => 'form-control', 'id'=>'cc_cardholder_first', 'placeholder'=>__('First name')]) !!} {!! Form::text('cc_cardholder_last', '', ['class' => 'form-control', 'id'=>'cc_cardholder_last', 'placeholder'=>__('Last name')]) !!} {{ __('payment.credit_card_number') }}* {!! Form::text('cc_cardpan', '', ['class' => 'form-control', 'id'=>'cc_cardpan', 'placeholder'=>__('payment.credit_card_number')]) !!} {{ __('payment.valid') }} {{ __('validation.attributes.month') }}* @php( $months = range(1, 12)) @foreach($months as $month) @php( $month = sprintf('%02d', $month) ) {{$month}} @endforeach {{ __('payment.valid') }} {{ __('validation.attributes.year') }}* @php( $years = range(date("Y"), date('Y', strtotime('+10 years'))) ) @foreach($years as $year) {{$year}} @endforeach {{ __('payment.verification_no') }}* {!! Form::text('cc_cardcvc2', '', ['class' => 'form-control', 'id'=>'cc_cardcvc2', 'placeholder'=>'CVC*']) !!} {{-- TOTAL / PLACE ORDER --}} @if($is_from === 'user_order') {{ Yard::instance($yard_instance)->subtotal() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('subtotal') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.subtotal') }}: {{ Yard::instance($yard_instance)->shippingNet() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('shippingNet') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.shipping_costs') }}: @else @if($shopping_user->is_from !== 'collection') @if(Yard::instance($yard_instance)->getUserTaxFree()) {{ Yard::instance($yard_instance)->subtotal() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('subtotal') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.subtotal') }}: @else {{ Yard::instance($yard_instance)->total() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('total') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.subtotal') }}: @endif @endif @if($shopping_user->is_from !== 'homeparty' && $shopping_user->is_from !== 'collection') {{ Yard::instance($yard_instance)->shipping() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('shipping') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.shipping_costs') }}: @endif @endif @if($shopping_user->is_from !== 'homeparty') @if($shopping_user->is_from !== 'collection') {{ Yard::instance($yard_instance)->getShippingCountryName() }} {{ __('Delivery country') }}: {{ Yard::instance($yard_instance)->subtotalWithShipping() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('subtotalWithShipping') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.total_without_VAT') }}: {{ Yard::instance($yard_instance)->taxWithShipping() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('taxWithShipping') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.plus_VAT') }}: {{ Yard::instance($yard_instance)->totalWithShipping() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('totalWithShipping') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.total_sum') }}: @else {{ Yard::instance($yard_instance)->totalWithShipping() }} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->getCurrencyByKey('totalWithShipping') }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.total_sum') }}: @endif @else @if(!$shopping_data['user_tax_free']) {!! $shopping_data['shop_price_net'] !!} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->convertCurrency($shopping_data['shop_price_net']) }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.total_without_VAT') }} @endif {!! $shopping_data['shop_price_tax'] !!} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->convertCurrency($shopping_data['shop_price_tax']) }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.excl') }} {{ __('order.VAT') }}: {!! $shopping_data['shop_price'] !!} € @if(Yard::instance($yard_instance)->isPriceCurrency()) ~{{ Yard::instance($yard_instance)->convertCurrency($shopping_data['shop_price']) }} {{ Yard::instance($yard_instance)->getPriceCurrencyUnit() }} @endif {{ __('order.total_sum') }}: @endif {{ __('payment.buy_now') }} {{ __('payment.buy_now_copy') }} {{-- /CHECKOUT --}} {!! Form::close() !!} {{-- /CHECKOUT --}} {{-- /CART --}} @endsection @section('scripts') @endsection
{{ \Session::get('customermessage') }}
{{ __('payment.payment_error_hint') }}
{{ __('payment.billing_address_can_only_changed_in_salescentre') }}
{{ __('payment.packstation_info') }}
{{ __('payment.packstation_alert_intro') }}
{{ __('payment.packstation_alert_footer') }}
{{ __('payment.payment_method_not_enabled_please_contact') }} {{ config('app.default_mail') }}
{{ __('payment.automatic_SEPA_mandate_type_was_selected') }}
{{ __('payment.buy_now_copy') }}