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/bb30a08c08a232e2b24055e3efe6efed
<div class="checkout-product-list"> <?php foreach($order->products as $product): ?> <div class="checkout-product-list-item"> <h3> <span class="rule-2"><?php echo $product->title; ?></span> </h3> <div class="quantity-price"> <div class="quantity"> <span><?php echo Lang::get('partials/orderOverview.quantity'); ?></span> <?php echo $product->quantity + $product->discount_number_of_items_for_free; ?> </div> <div class="price"> <span class="price" ><?php echo Format::asPrice($product->price , ['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"><?php echo Format::asPrice($order->getSubTotal(), ['currency' => '€']); ?></span> </div> <?php /* Discount */ ?> <?php if($order->discount_price): ?> <div class="summary-row discount"> <span class="title"><?php echo Lang::get('partials/pricingOverview.discount'); ?></span> <span class="price">- <?php echo Format::asPrice($order->discount_price, ['currency' => '€']); ?></span> </div> <?php endif; ?> <?php /* Shipping Costs */ ?> <div class="summary-row shippingCost-summary"> <span class="title"><?php echo Lang::get('partials/pricingOverview.shipping'); ?></span> <span class="price"><?php echo Format::asPrice($order->shipping_costs, ['currency' => '€']); ?></span> </div> <?php foreach($order->getTaxTotals() as $taxTotal): ?> <?php /* BTW */ ?> <div class="summary-row vat"> <span class="title"><?php echo Lang::get('partials/pricingOverview.vat') .' ('.$taxTotal['rate']. '%)'; ?></span> <span class="price"><?php echo Format::asPrice($taxTotal['total'], ['currency' => '€']); ?></span> </div> <?php endforeach; ?> <div class="summary-row total"> <span class="title"><?php echo Lang::get('partials/pricingOverview.total'); ?></span> <span class="price"><?php echo Format::asPrice($order->price_total,['currency' => '€']); ?></span> </div> </div>