@extends('master.front') @section('title') {{__('Wishlist')}} @endsection @section('content')
@include('includes.user_sitebar')
@if ($wishlist_items->count() > 0) @endif @if ($wishlist_items->count() > 0) @foreach ($wishlist_items as $product) @endforeach @else @endif
{{__('Wishlist Product')}}{{__('Clear Wishlist')}}
Product

{{$product->name}}

{{PriceHelper::grandCurrencyPrice($product)}}
{{__('Availability')}}:
{{$product->stock == 0 ? __('Out of stock') : __('In Stock')}}
@if ($product->is_stock()) @if ($product->item_type != 'affiliate') {{__('Add To Cart')}} @endif @else {{__('Details')}} @endif
{{__('No Product Found')}}

@endsection