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

My Wishlist

{{ $wishlist->total() }} items saved

@if($wishlist->total() > 0) Browse More Products @endif
@forelse($wishlist as $item)
@if($item->product->primaryImage) {{ $item->product->name }} @else
{{ substr($item->product->name, 0, 1) }}
@endif @if($item->product->getDiscountPercentage() > 0) -{{ $item->product->getDiscountPercentage() }}% @endif
{{ $item->product->name }} @if($item->product->vendor) {{ $item->product->vendor->name }} @endif
{{ price($item->product->price) }} @if($item->product->compare_price) {{ price($item->product->compare_price) }} Save {{ price($item->product->compare_price - $item->product->price) }} @endif
@csrf @method('DELETE')
View Details
@csrf
@empty

Your wishlist is empty

Start adding products you love

Explore Products
@endforelse @if($wishlist->hasPages())
{{ $wishlist->links() }}
@endif
@endsection