58 lines
No EOL
2.2 KiB
PHP
58 lines
No EOL
2.2 KiB
PHP
<div class="table-responsive">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Gesamt</th>
|
|
<th class="text-right">{{__('EK-Preis')}}</th>
|
|
<th class="text-right">{{__('Points')}}</th>
|
|
<th class="text-right">{{__('Verdienst')}}</th>
|
|
<th class="text-right">{{__('VK-Preis')}}</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
|
|
|
|
</tbody>
|
|
<tfoot>
|
|
@php($hp_order = $homeparty->order)
|
|
|
|
@if($hp_order['is_bonus'])
|
|
<tr class="foot-small">
|
|
<td colspan="4" class="border-top">
|
|
{{ $hp_order['voucher_name'] }}
|
|
</td>
|
|
<td class="border-top text-right">{{ Util::formatNumber($hp_order['voucher_price'])}} €</td>
|
|
</tr>
|
|
@endif
|
|
<tr class="foot-small">
|
|
<td colspan="1" class="border-top">
|
|
<strong>Gesamtsummen:</strong>
|
|
</td>
|
|
<td class="border-top text-right"><strong>{{ Util::formatNumber($hp_order['ek_price'])}} €</strong></td>
|
|
<td class="border-top text-right"><strong>{{ $hp_order['points']}}</strong></td>
|
|
<td class="border-top text-right"><strong>{{ Util::formatNumber($hp_order['income_price'])}} €</strong></td>
|
|
<td class="border-top text-right"><strong>{{ Util::formatNumber($hp_order['price'])}} €</strong></td>
|
|
</tr>
|
|
<tr class="foot-small">
|
|
<td colspan="1" class="text-muted">
|
|
Summe ohne MwSt:
|
|
</td>
|
|
<td class=""> </td>
|
|
|
|
<td class=""> </td>
|
|
<td class=""> </td>
|
|
<td class="text-muted text-right">{{ Util::formatNumber($hp_order['price_net'])}} €</td>
|
|
</tr>
|
|
<tr class="foot-small">
|
|
<td colspan="1" class="text-muted">
|
|
Enthaltene MwSt:
|
|
</td>
|
|
<td class=""> </td>
|
|
|
|
<td class=""> </td>
|
|
<td class=""> </td>
|
|
<td class="text-muted text-right">{{ Util::formatNumber($hp_order['price']-$hp_order['price_net'])}} €</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div> |