payment Card first 4 payments inc. mails
This commit is contained in:
parent
c20deac3fe
commit
6e3adac4d7
38 changed files with 3063 additions and 921 deletions
|
|
@ -92,18 +92,37 @@
|
|||
<!-- CHECKOUT FINAL MESSAGE -->
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3>Thank you, John Doe.</h3>
|
||||
|
||||
<p>
|
||||
Your order has been placed. In a few moments you will receive an order confirmation email from us.<br />
|
||||
If you like, you can explore more <a href="{{ url('produkte') }}"> products</a>.
|
||||
</p>
|
||||
<h3>Vielen Dank, </h3>
|
||||
<p>Deine Bestellung wurde aufgenommen. In Kürze erhälst du von uns eine Bestellbestätigungs-E-Mail.</p>
|
||||
|
||||
<h4>Deine Bestellnummer ist: {{ $order_reference }}</h4>
|
||||
<hr />
|
||||
|
||||
@if($pay_trans && $pay_trans->shopping_payment)
|
||||
|
||||
@if($pay_trans->shopping_payment->clearingtype == "vor")
|
||||
<h3>Bezahlung per Vorkasse:</h3>
|
||||
<p>Bitte überweise {{ number_format( floatval($pay_trans->shopping_payment->amount/100), 2, ",", ".") }} EUR auf die folgende Kontoverbindung, um den Kauf abzuschließen.
|
||||
<br>
|
||||
<strong>Kontoinhaber:</strong> {{ $pay_trans->transmitted_data['clearing_bankaccountholder'] }} <br>
|
||||
<strong>IBAN:</strong> {{ $pay_trans->transmitted_data['clearing_bankiban'] }} <br>
|
||||
<strong>BIC:</strong> {{ $pay_trans->transmitted_data['clearing_bankbic'] }} <br>
|
||||
<strong>Bank:</strong> {{ $pay_trans->transmitted_data['clearing_bankname'] }} <br>
|
||||
<strong>Gesamtbetrag:</strong> {{ number_format( floatval($pay_trans->shopping_payment->amount/100), 2, ",", ".") }} EUR<br>
|
||||
<strong>Verwendungszweck:</strong> {{ $pay_trans->transmitted_data['clearing_bankcode'] }}
|
||||
</p>
|
||||
<hr />
|
||||
@endif
|
||||
|
||||
@if($pay_trans->shopping_payment->clearingtype == "cc")
|
||||
<h4>Bezahlung per Kreditkarte:</h4>
|
||||
<p>Deine Zahlung wurde genehmigt, eine Bestätigung der Zahlung wird automatisch erstellt.</p>
|
||||
<hr />
|
||||
@endif
|
||||
@endif
|
||||
<p>
|
||||
Thank you very much for choosing us,<br />
|
||||
<strong> Inc.</strong>
|
||||
Dein Team von,<br />
|
||||
<strong> mivita.</strong>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue