{{ __('Wishlist') }}

@if ($products->total())
@foreach ($products as $product) @if (EcommerceHelper::isCartEnabled()) @endif @endforeach
{{ __('Image') }} {{ __('Price') }}
 
{!! BaseHelper::clean($product->name) !!} @if (EcommerceHelper::isReviewEnabled()) @php $countRating = $product->reviews()->count(); @endphp @if ($countRating > 0)
({{ $countRating }})
@endif @endif
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price !== $product->price)  {{ format_price($product->price_with_taxes) }} @endif
{!! $products->links() !!}
@else

{{ __('No product in wishlist!') }}

@endif