@extends('layouts.app') @section('title', 'My Wishlist - ' . ($shopSettings['shop_name'] ?? 'Orange Groceries')) @section('meta_robots', 'noindex, nofollow') @section('canonical', route('wishlist.index')) @section('content')

My Wishlist

@if($wishlists->count() > 0)
@foreach($wishlists as $item) @if($item->product)
@csrf
{{ $item->product->name }}
{{ $item->product->name }}
₹{{ number_format($item->product->effective_price, 2) }}
@csrf
@endif @endforeach
@else

Your Wishlist is Empty

Explore products and tap the heart icon to save them for later.

Shop Products
@endif
@endsection