@extends('layouts.app') @section('title', 'My Wishlist') @section('content')

My Wishlist

@if($wishlistItems->count() > 0)
@foreach($wishlistItems as $item) @if($item->product)
{{ $item->product->name }}
@csrf @method('DELETE')
{{ Str::limit($item->product->name, 40) }}

{{ $item->product->brand?->name ?? 'Unknown Brand' }}

{{ \App\Support\Currency::symbol() }}{{ number_format($item->product->price, 2) }} @if($item->product->isOnSale()) {{ \App\Support\Currency::symbol() }}{{ number_format($item->product->compare_at_price, 2) }} @endif
@endif @endforeach
@else

Your wishlist is empty

Browse products and click the heart icon to save items you love.

Browse Products
@endif
@endsection