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/SBogers10/topswtw.komma.pro/app/storage/views/f997ccb3b1aa7b0ee9e1b17efd0301c7
<h2>3. <?php echo Lang::get('checkout/checkout.order.title'); ?></h2> <?php if(count($checkout->cart()->products()) == 0): ?> <?php echo Lang::get('checkout/cart.no_products'); ?> <?php endif; ?> <div class="checkout-product-list"> <?php foreach($checkout->cart()->products() as $product): ?> <div class="checkout-product-list-item"> <h3> <span class="rule-1"><?php echo (strtolower($product['data']->brand_name) != 'toebehoren'?$product['data']->brand_name.' ': ''); ?><?php echo $product['data']->name; ?></span> <?php if($product['data']->special_1): ?> <span class="rule-2"><?php echo $product['data']->special_1; ?></span> <?php endif; ?> <span class="rule-3"> <?php if(Lang::has('pages/products.' . $product['data']->product_group)): ?> <?php echo Lang::get('pages/products.' . $product['data']->product_group); ?> <?php else: ?> <?php echo $product['data']->product_group; ?> <?php endif; ?> <?php echo $product['data']->filter_class; ?> </span> </h3> <div class="quantity-price"> <div class="quantity"> <span><?php echo Lang::get('partials/orderOverview.quantity'); ?></span> <?php echo $product['quantity']; ?> <?php if(strtolower($product['data']->product_group) == 'filterset' || strtolower($product['data']->product_group) == 'filtergrepen'): ?> <?php echo Lang::get('pages/products.units.sets'); ?> <?php elseif(strtolower($product['data']->product_group) == 'filter'): ?> <?php echo Lang::get('pages/products.units.filters'); ?> <?php endif; ?> </div> <div class="price"> <span class="price" ng-hide="invoiceCompany"><?php echo Format::asPrice($product['data']->getDiscountPrice($product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId()), ['currency' => '€']); ?></span> <span class="price" ng-show="invoiceCompany"><?php echo Format::asPrice( $product['data']->getDiscountPriceExVat( $product['quantity'], $checkout->cart()->getCouponCode(), $checkout->cart()->getBatchId() ), ['currency' => '€']); ?></span> </div> </div> </div> <?php endforeach; ?> </div> <div class="summary"> <?php /* Sub Total */ ?> <div class="summary-row"> <span class="title"><?php echo Lang::get('partials/pricingOverview.subtotal'); ?></span> <span class="price" ng-init="subTotal = <?php echo $checkout->cart()->totalProductPrice(); ?>" ng-hide="invoiceCompany"><?php echo Format::asPrice($checkout->cart()->totalProductPrice(), ['currency' => '€']); ?></span> <span class="price" ng-init="subTotalEx = <?php echo $checkout->cart()->totalProductPriceExVat(); ?>" ng-show="invoiceCompany"><?php echo Format::asPrice($checkout->cart()->totalProductPriceExVat(), ['currency' => '€']); ?></span> </div> <?php /* Discount */ ?> <div class="summary-row discount" ng-show="discount > 0"> <span class="title"><?php echo Lang::get('partials/pricingOverview.order_discount'); ?></span> <span class="price" ng-hide="invoiceCompany" ng-init="discount = <?php echo $checkout->cart()->getDiscount(); ?>">- <?php echo Format::asPrice($checkout->cart()->getDiscount(), ['currency' => '€']); ?></span> <span class="price" ng-show="invoiceCompany" ng-init="discountEx = <?php echo $checkout->cart()->getDiscountExVat(); ?>">- <?php echo Format::asPrice($checkout->cart()->getDiscountExVat(), ['currency' => '€']); ?></span> </div> <?php /* Shipping Costs */ ?> <div class="summary-row shippingCost-summary" ng-init="highestVatPercentage = <?php echo $checkout->cart()->highestVatPercentage(); ?>"> <span class="title"><?php echo Lang::get('partials/pricingOverview.shipping'); ?></span> <span class="price" ng-hide="invoiceCompany" ng-init="shippingCosts = <?php echo $checkout->cart()->shipping(); ?>" ng-bind-html="(shippingCosts / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->shipping(), ['currency' => '€']); ?></span> <span class="price" ng-show="invoiceCompany" ng-init="shippingCostsEx = <?php echo $checkout->cart()->shippingWithoutVat(); ?>" ng-bind-html="(shippingCostsEx / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->shippingWithoutVat(), ['currency' => '€']); ?></span> <p class="sub-text"> <?php echo Lang::get('partials/pricingOverview.free_shipping', ['country'=> '<span ng-bind-html=shippingCountryExtra>'.Lang::get('countries.'.\Shop::getDomainCountry()).'</span>' ,'price' => '<span ng-bind-html="(freeShippingCountry / 100) | currency:\'&euro; \' | smallAfterCommaFilter"></span>']); ?>* </p> </div> <?php /* Price VAT excluded */ ?> <div> <?php /*This block is only shown when -There is an invoice compamy AND the country is not NL and shipping is not NL -OR invoiceCompany and country is nl*/ ?> <div class="summary-row total" ng-show="(invoiceCompany &&(invoiceCountry != 'NL' && ( shippingType != 'add-shipping-address' || shippingCountry != 'NL'))||(invoiceCompany && invoiceCountry == 'NL'))"> <?php /*Totaal (Excl BTW)*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.total'); ?><span class="extra">(<?php echo Lang::get('partials/pricingOverview.excl_vat'); ?>)</span></span> <span class="price" ng-bind-html="(getTotalCostsEx() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->priceWithoutVat( $checkout->cart()->totalPrice() ), ['currency' => '€']); ?></span> </div> <?php /* VAT normal */ ?> <?php /*This is shown when invoiceCompany is set and country is nl*/ ?> <div class="summary-row vat" ng-show="invoiceCompany && invoiceCountry == 'NL'"> <?php /*Prijs inclusief BTW*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.price_with_vat'); ?></span> <span class="price" ng-bind-html="(getTotalCosts() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->totalPrice(), ['currency' => '€']); ?></span> </div> <?php /* VAT reverse charge */ ?> <?php /*This in shown when invoiceCompany and country is not nl and shipping is not nl*/ ?> <div class="summary-row vat" ng-show="(invoiceCompany &&(invoiceCountry != 'NL' && ( shippingType != 'add-shipping-address' || shippingCountry != 'NL')))"> <?php /*Btw verlegd (€ 0)*/ ?> <span class="title"><?php echo Lang::get('partials/pricingOverview.vat_reverse_charge'); ?></span> <span class="price"><?php echo Format::asPrice(0, ['currency' => '€']); ?></span> </div> </div> <?php /* Price VAT included */ ?> <?php /*This is shown when no invoicompany OR invoice country is not nl and shipping is nl*/ ?> <div ng-show="!(invoiceCompany) || (invoiceCountry != 'NL' && (shippingType == 'add-shipping-address' && shippingCountry == 'NL'))"> <div class="summary-row total"> <span class="title"><?php echo Lang::get('partials/pricingOverview.total'); ?></span> <span class="price" ng-bind-html="(getTotalCosts() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->totalPrice(),['currency' => '€']); ?></span> <p class="sub-text"> <?php echo \Illuminate\Support\Facades\Lang::get('partials/pricingOverview.price_with_vat_message'); ?> </p> </div> <div class="summary-row vat"> <span class="title"><?php echo Lang::get('partials/pricingOverview.price_without_vat'); ?></span> <span class="price" ng-bind-html="(getTotalCostsEx() / 100) | currency:'€' | smallAfterCommaFilter"><?php echo Format::asPrice($checkout->cart()->priceWithoutVat( $checkout->cart()->totalPrice() ), ['currency' => '€']); ?></span> </div> </div> </div>