@extends('front.layouts.app', ['title' => 'Wishlist']) @section('content') @include('front.layouts.app-header') Wishlist Home Wishlist @include('front.my-account.left-sidebar') Wishlist @if(count($wishlistproducts) > 0) @foreach($wishlistproducts as $wishlist) {{$wishlist->product->name}} {{$wishlist->product->description}} {{ config('constant.CURRENCY_SIGN') }}{{$wishlist->product->productsVariantMax->selling_price}} @if($wishlist->product->addedInCart) Go to Cart @else Add to cart @endif @endforeach @endif @include('front.layouts.app-footer') @endsection
{{$wishlist->product->description}}
{{ config('constant.CURRENCY_SIGN') }}{{$wishlist->product->productsVariantMax->selling_price}}