{{ __('Your Wishlist') }}

@if ($products->total())

{!! BaseHelper::clean(__('There are :total products in this list', ['total' => '' . $products->total() . ''])) !!}

@endif
@if ($products->total())
@if (EcommerceHelper::isCartEnabled()) @endif @foreach($products as $product) @if (EcommerceHelper::isCartEnabled()) @endif @endforeach
{{ __('Product') }} {{ __('Price') }} {{ __('Stock Status') }}{{ __('Action') }}{{ __('Remove') }}
{{ $product->name }}

{{ $product->original_product->name }} @if ($product->isOutOfStock()) ({!! $product->stock_status_html !!}) @endif

@if (is_plugin_active('marketplace') && $product->original_product->store->id)

{{ __('Sold by') }}: {{ $product->original_product->store->name }}

@endif @if (EcommerceHelper::isReviewEnabled() && $product->reviews_count)
({{ $product->reviews_count }})
@endif
{{ format_price($product->front_sale_price_with_taxes) }} @if ($product->front_sale_price != $product->price) {{ format_price($product->price_with_taxes) }} @endif {!! BaseHelper::clean($product->stock_status_html) !!} {{ __('Add to cart') }}
@if ($products->total()) {!! $products->withQueryString()->links(Theme::getThemeNamespace() . '::partials.custom-pagination') !!} @endif @else

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

@endif