mivita/resources/views/emails/collection_detail.blade.php
2023-07-03 10:07:08 +02:00

68 lines
No EOL
3.2 KiB
PHP

<table style="padding: 20px; border:1px solid #eee; background-color: #f6fdf5;line-height:1.6em;" cellpadding="2" cellspacing="0" width="100%">
<tr>
<th style="color:#43413f; text-align: left; vertical-align: top;line-height:1.2em;">Produkt</th>
<th style="color:#43413f; text-align: center; vertical-align: top;line-height:1.2em;">Netto-Preis</th>
<th style="color:#43413f; text-align: center; vertical-align: top;line-height:1.2em;">Anzahl</th>
<th style="color:#43413f; text-align: right; vertical-align: top;line-height:1.2em;">Summe</th>
</tr>
@foreach($shopping_order->shopping_collect_order->shop_items as $key => $shop_item)
<tr>
<td style="color:#37302d; text-align: left; vertical-align: top;line-height:1.6em;">
{{$shop_item['name']}}
</td>
<td style="color:#37302d; text-align: center; vertical-align: top;line-height:1.6em;">
{{ formatNumber($shop_item['user_price_net']) }} &euro;
</td>
<td style="color:#37302d; text-align: center; vertical-align: top; width: 10%;line-height:1.6em;">
{{$shop_item['qty']}}
</td>
<td style="color:#37302d; text-align: right; vertical-align: top;line-height:1.6em;">
{{ formatNumber($shop_item['user_price_total_net']) }} &euro;
</td>
</tr>
@endforeach
<tr>
<td style="color:#37302d; text-align: left; vertical-align:top; line-height:1.6em;">
Gesamte Versandkosten
</td>
<td style="color:#37302d; text-align: center; vertical-align:top; line-height:1.6em;">
</td>
<td style="color:#37302d; text-align: center; vertical-align:top; width:10%; line-height:1.6em;">
1
</td>
<td style="color:#37302d; text-align: right; vertical-align:top; line-height:1.6em;">
{{ formatNumber($shopping_order->shopping_collect_order->shipping_net) }} &euro;
</td>
</tr>
<tr>
<td colspan="4">
<hr>
</td>
</tr>
<tr>
<td colspan="3" style="color:#37302d; text-align: left; vertical-align: top;line-height:1.6em;">
Summe
</td>
<td style="color:#37302d; text-align: right; vertical-align: top;line-height:1.6em;">
{{ formatNumber($shopping_order->shopping_collect_order->price_total_net) }} &euro;
</td>
</tr>
<tr>
<td colspan="3" style="color:#37302d; text-align: left; vertical-align: top;line-height:1.6em;">
zzgl. MwSt:
</td>
<td style="color:#37302d; text-align: right; vertical-align: top;line-height:1.6em;">
{{ formatNumber($shopping_order->shopping_collect_order->tax_total) }} &euro;
</td>
</tr>
<tr>
<td colspan="3" style="color:#37302d; text-align: left; vertical-align: top;line-height:1.6em;">
<b>Gesamtsumme Brutto:</b>
</td>
<td style="color:#37302d; text-align: right; vertical-align: top;line-height:1.6em;">
<b>{{ formatNumber($shopping_order->shopping_collect_order->price_total) }} &euro;</b>
<br>
<span style="font-size: 0.8em">{{__('email.checkout_mail_tax_info')}}</span>
</td>
</tr>
</table>