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

{{ $product->name }}

{{ 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') }}
{!! $products->withQueryString()->links(Theme::getThemeNamespace() . '::partials.custom-pagination') !!} @else

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

@endif