@foreach($wishlists as $key=>$wishlist) @php($product = $wishlist->productFullInfo) @if( $wishlist->productFullInfo)
{{ translate('wishlist') }} @if($product->discount > 0) @if ($product->discount_type == 'percent') -{{round($product->discount,(!empty(getWebConfig(name: 'decimal_point_settings')) ? getWebConfig(name: 'decimal_point_settings'): 0))}}% @elseif($product->discount_type =='flat') -{{ webCurrencyConverter(amount: $product->discount) }} @endif @endif
@if($brand_setting) {{translate('brand')}} : {{$product->brand?$product->brand['name']:''}} @endif
{!! getPriceRangeWithDiscount(product: $product) !!}
@else {{ translate('item_removed') }} @endif @endforeach
@if($wishlists->count()==0)
{{ translate('no_product_found_in_wishlist') }}!
@endif