@extends('layouts/layout') @section('content')

Wishlist

@if ($products->count()) @foreach ($products as $product)
{{ $product->name }}

₹ {{ number_format($product->price, 2) }} ₹{{ number_format($product->price-$product->discount, 2) }}

@php $quantity = $cartItems[$product->id] ?? 0; @endphp
@if ($quantity > 0)
@else Add to Cart @endif
@endforeach @else

Your wishlist is empty.

Continue Shopping
@endif
@endsection