HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/zipwire/zipwire.nl/resources/views/kms/partials/orders/orderOverviewVat.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('kms/orderOverview.article_nr') }}</th>
                <th align="left" width="50%">{{ Lang::get('kms/orderOverview.description') }}</th>
                <th align="left" width="10%">{{ Lang::get('kms/orderOverview.quantity') }}</th>
                <th align="left" width="10%">{{ Lang::get('kms/orderOverview.price') }}</th>
                <th align="left" width="10%">{{ Lang::get('kms/orderOverview.discount') }}</th>
                <th align="right" width="10%">{{ Lang::get('kms/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">&euro;&nbsp;{{ \KommaHelper::price($product->original_price/$product->quantity) }}</td>
                    <td class="order-overview-product-discount">{{ $product->discount_description }}</td>
                    <td class="order-overview-product-price" align="right">&euro;&nbsp;{{ \KommaHelper::price($product->price) }}</td>
                </tr>
                {{--@foreach($product->getCompositionAsObject() as $composite)--}}
                    {{--<tr class="order-overview-composite">--}}
                        {{--<td>&nbsp;</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">&nbsp;</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 align="left" width="75%">&nbsp;</th>
            <td align="left" width="5%">&nbsp;</td>
            <td align="right" width="10%">{{ Lang::get('partials/pricingOverview.subtotal') }}:</td>
            <td align="right" width="10%">&euro;&nbsp;{{ \KommaHelper::price($order->getSubTotal()) }}</td>
        </tr>
        @if($order->discount_price)
            <tr class="order-overview-discount">
                <th align="left" width="75%">&nbsp;</th>
                <td align="left" width="5%">&nbsp;</td>
                <td align="right">{{ Lang::get('partials/pricingOverview.discount') }}:</td>
                <td align="right">(-{{ $order->discount_percentage }}%)
                    -&euro;&nbsp;{{ \KommaHelper::price($order->discount_price) }}</td>
            </tr>
        @endif
        <tr class="order-overview-shipping-costs">
            <th align="left" width="75%">&nbsp;</th>
            <td align="left" width="5%">&nbsp;</td>
            <td align="right">{{ Lang::get('partials/pricingOverview.shipping') }}:</td>
            <td align="right">&euro;&nbsp;{{ \KommaHelper::price($order->shipping_costs) }}</td>
        </tr>

        @foreach($order->getTaxTotals() as $taxTotal)
            <tr class="order-overview-tax">
                <th align="left" width="75%">&nbsp;</th>
                <td align="left" width="5%">&nbsp;</td>
                <td align="right">{{ Lang::get('partials/pricingOverview.vat') }} {{ $taxTotal['rate'] }}%</td>
                <td align="right">&euro;&nbsp;{{ \KommaHelper::price($taxTotal['total']) }}</td>
            </tr>
        @endforeach

        <tr class="order-overview-total">
            <th align="left" width="75%">&nbsp;</th>
            <td align="left" width="5%">&nbsp;</td>
            <td align="right">{{ Lang::get('partials/pricingOverview.total') }}:</td>
            <td align="right">&euro;&nbsp;{{ \KommaHelper::price($order->price_total) }}</td>
        </tr>
        </table>

</div>