File: D:/HostingSpaces/SBogers10/topswtw.komma.pro/app/views/partials/orders/orderOverviewExVat.blade.php
<div class="row products-table">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="order-overview">
<tr>
<th align="left" width="10%">{{ Lang::get('partials/orderOverview.article_nr') }}</th>
<th align="left" width="50%">{{ Lang::get('partials/orderOverview.description') }}</th>
<th align="left" width="10%">{{ Lang::get('partials/orderOverview.quantity') }}</th>
<th align="left" width="10%">{{ Lang::get('partials/orderOverview.price') }}</th>
<th align="left" width="10%">{{ Lang::get('partials/orderOverview.discount') }}</th>
<th align="right" width="10%">{{ Lang::get('partials/orderOverview.total') }}</th>
</tr>
@foreach($order->products as $product)
<tr class="order-overview-product">
<td class="order-overview-product-nr">{{ $product->internal_article_number }}</td>
<td class="order-overview-product-description">{{ $product->title }}</td>
<td class="order-overview-product-quantity">{{ $product->quantity }}
@if($product->discount_number_of_items_for_free > 0)
+ {{$product->discount_number_of_items_for_free}}
@endif</td>
<td class="order-overview-product-original-price">€ {{ price($product->getOriginalPriceExVat()) }}</td>
<td class="order-overview-product-discount">{{ $product->discount_description }}</td>
<td class="order-overview-product-price" align="right">€ {{ price($product->getPriceExVat()) }}</td>
</tr>
{{--@foreach($product->getCompositionAsObject() as $composite)--}}
{{--<tr class="order-overview-composite">--}}
{{--<td> </td>--}}
{{--<td>{{ $composite->type }} - {{$composite->size}} - {{$composite->class}}</td>--}}
{{--<td class="order-overview-product-quantity">--}}
{{--{{ $composite->quantity * $product->quantity}}--}}
{{--@if($product->discount_number_of_items_for_free > 0)--}}
{{--+ {{$product->discount_number_of_items_for_free* $composite->quantity}}--}}
{{--@endif--}}
{{--</td>--}}
{{--<td collspan="3"> </td>--}}
{{--</tr>--}}
{{--@endforeach--}}
@endforeach
</table>
</div>
<div class="row">
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
<tr class="order-overview-subtotal">
<th collapse="2" align="left" width="70%"> </th>
<td align="right" width="20%">{{ Lang::get('partials/pricingOverview.subtotal') }}:</td>
<td align="right" width="10%">€ {{ price($order->getSubTotalExVat()) }}</td>
</tr>
@if($order->discount_price)
<tr class="order-overview-discount">
<th collapse="2"></th>
<td align="right">{{ Lang::get('partials/pricingOverview.discount') }}:</td>
<td align="right">(-{{ $order->discount_percentage }}%)
-€ {{ price($order->getDiscountPriceExVat()) }}</td>
</tr>
@endif
<tr class="order-overview-shipping-costs">
<th collapse="2"></th>
<td align="right">{{ Lang::get('partials/pricingOverview.shipping') }}:</td>
<td align="right">€ {{ price($order->shipping_costs) }}</td>
</tr>
<tr class="order-overview-total">
<th collapse="2"></th>
<td align="right">{{ Lang::get('partials/pricingOverview.total') }}:</td>
<td align="right">€ {{ price($order->getPriceTotalExVat()) }}</td>
</tr>
@foreach($order->getTaxTotals() as $taxTotal)
<tr class="order-overview-tax">
<th collapse="2"></th>
<td align="right">{{ Lang::get('partials/pricingOverview.vat') }} {{ $taxTotal['rate'] }}%</td>
<td align="right">€ {{ price($taxTotal['total']) }}</td>
</tr>
@endforeach
<tr class="order-overview-total">
<th collapse="2"></th>
<td align="right">{{ Lang::get('partials/pricingOverview.total_vat_included') }}:</td>
<td align="right">€ {{ price($order->price_total) }}</td>
</tr>
</table>
</div>