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/ASmits/kemi.nl/resources/views/kms/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('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->getOriginalPriceExVat()) }}</td>
            <td class="order-overview-product-discount">{{ $product->discount_description }}</td>
            <td class="order-overview-product-price" align="right">&euro;&nbsp;{{ \KommaHelper::price($product->getPriceExVat()) }}</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 collapse="2" align="left" width="70%">&nbsp;</th>
            <td align="right" width="20%">{{ Lang::get('partials/pricingOverview.subtotal') }}:</td>
            <td align="right" width="10%">&euro;&nbsp;{{ \KommaHelper::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 }}%)
                    -&euro;&nbsp;{{ \KommaHelper::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">&euro;&nbsp;{{ \KommaHelper::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">&euro;&nbsp;{{ \KommaHelper::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">&euro;&nbsp;{{ \KommaHelper::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">&euro;&nbsp;{{ \KommaHelper::price($order->price_total) }}</td>
        </tr>
    </table>

</div>