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/views/partials/products/pricesBlock.blade.php
<div class="price-block">
    <div>
        <span class="price" ng-bind-html="(showDiscountPrice()*quantity) | currency:'€' | smallAfterCommaFilter">
            {{ Format::asPrice($product->price, ['currency'=>'€']) }}
        </span>
        <span class="original-price" data-original-price="{{ $product->price }}"
              ng-bind-html="getOriginalPrice()*quantity | currency:'€' | smallAfterCommaFilter"
              ng-show="showDiscountPercentage() > 0" ng-cloak>
            {{ Format::asFlatPrice($product->price,['currency' => '€']) }}
        </span>
    </div>
    <span class="price-info">
        <span class="set-price" data-original-price="{{ $product->price }}"
              ng-bind-html="showDiscountPrice() | currency:'€' | smallAfterCommaFilter"
              ng-show="quantity > 1" ng-cloak>
            {{ Format::asFlatPrice($product->price,['currency' => '€']) }}
        </span>
        @if($product->product_group == 'filterset' || $product->product_group == 'filtergrepen')
            {{ Lang::get('pages/products.units.per_set') }}
        @elseif($product->product_group == 'filter')
            {{ Lang::get('pages/products.units.per_filter') }}
        @else
            {{ Lang::get('pages/products.units.per_unit') }}
        @endif
        <span class="free-items-wrapper" ng-show="freeItem > 0" ng-cloak="">
            +<span class="free-items" ng-bind="freeItem"></span>
            @lang('pages/products.free')
        </span>
    </span>
</div>