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>