@extends('frontend.layout.master') @section('title', $pageTitle) @section('content')

Wishlist

@if($WishlistData->count() > 0)
@foreach($WishlistData as $wishlistItem)

{{$wishlistItem->product->product_name}}

Rs. {{$wishlistItem->product->product_saleprice}}

@csrf
@endforeach
@else

There is No Product in Your Wishlist

@endif
@endsection