@if ($products->total())
{{ __('Product') }} | {{ __('Unit Price') }} | {{ __('Stock status') }} | @if (EcommerceHelper::isCartEnabled())@endif | ||
---|---|---|---|---|---|
{{ $product->name }}
@if (is_plugin_active('marketplace') && $product->original_product->store->id)
{{ __('Vendor') }}:
{{ $product->original_product->store->name }}
@endif
|
{{ __('Price') }}:
{!! Theme::partial('ecommerce.product-price', compact('product')) !!}
|
@if ($product->isOutOfStock()) {{ __('Out Of Stock') }} @else {{ __('In Stock') }} @endif
|
@if (EcommerceHelper::isCartEnabled())
@endif |
{!! $products->links() !!}
@else
{{ __('No products in wishlist!') }}
@endif