@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Registrierung abschließen') }}

@if($userHistoryWizardPayment && $userHistoryWizardPayment->status > 2)
Eine Zahlung wurde ausgeführt. Status: {{ trans('payment.status.'.$userHistoryWizardPayment->getStatusType())}}
@if($userHistoryWizardPayment->shopping_order && $userHistoryWizardPayment->shopping_order->shopping_payment_last) @if($userHistoryWizardPayment->shopping_order->shopping_payment_last->clearingtype === 'vor')

Bezahlung per Vorkasse:

Bitte überweise {{ number_format(($userHistoryWizardPayment->shopping_order->shopping_payment_last->amount/100), 2, ",", ".") }} EUR auf die folgende Kontoverbindung, um den Kauf abzuschließen.
{{__('email.checkout_mail_bank_holder')}} {!! \App\Models\Setting::getContentBySlug('prepayment-account-owner') !!}
{{__('email.checkout_mail_bank_iban')}} {!! \App\Models\Setting::getContentBySlug('prepayment-iban') !!}
{{__('email.checkout_mail_bank_bic')}} {!! \App\Models\Setting::getContentBySlug('prepayment-bic') !!}
{{__('email.checkout_mail_bank_name')}} {!! \App\Models\Setting::getContentBySlug('prepayment-bank') !!}
Gesamtbetrag: {{ number_format( ($userHistoryWizardPayment->shopping_order->shopping_payment_last->amount/100), 2, ",", ".") }} EUR
Verwendungszweck: {{ $userHistoryWizardPayment->shopping_order->shopping_payment_last->reference }}


@endif @endif
@include('user.wizard._payment')
@else @include('user.wizard._payment') @endif
@endsection