@extends('front::layouts.app') @section('title', 'My Wishlist - ' . config('app.name')) @section('content')

My Wishlist

Save products you love and get notified about price drops and special offers.

{{ $statistics['total_items'] }}

Total Items

${{ number_format($statistics['total_value'], 2) }}

Total Value

{{ $statistics['categories'] }}

Categories

{{ $statistics['brands'] }}

Brands

Price Alerts

Track price changes and get notified about the best deals

@if($wishlist->count() > 0)

Wishlist Items

@foreach($wishlist as $item)
@if($item->product->getFirstMediaUrl('images')) {{ $item->product->title }} @else
@endif @if($withPriceAlerts && $item->price_drop)
{{ $item->price_drop_percentage }}% OFF
@endif @if($item->quantity > 1)
Qty: {{ $item->quantity }}
@endif

{{ $item->product->title }}

@if($withPriceAlerts && $item->price_drop)
${{ number_format($item->product->special_price ?? $item->product->price, 2) }} ${{ number_format($item->price, 2) }} Save ${{ number_format($item->price_difference, 2) }}
@else
@if($item->product->special_price) ${{ number_format($item->product->special_price, 2) }} ${{ number_format($item->product->price, 2) }} @else ${{ number_format($item->product->price, 2) }} @endif
@endif
Stock: {{ $item->product->stock > 0 ? 'In Stock' : 'Out of Stock' }}
@endforeach
@else

Your wishlist is empty

Start adding products you love to your wishlist to track them and get notified about price drops.

@endif @if($recommendations->count() > 0)

You Might Also Like

@foreach($recommendations as $product)
@if($product->getFirstMediaUrl('images')) {{ $product->title }} @else
@endif

{{ $product->title }}

@if($product->special_price) ${{ number_format($product->special_price, 2) }} ${{ number_format($product->price, 2) }} @else ${{ number_format($product->price, 2) }} @endif
Stock: {{ $product->stock > 0 ? 'In Stock' : 'Out of Stock' }}
@endforeach
@endif

Wishlist Actions

Share Wishlist

Share your wishlist with friends and family

Export Wishlist

Download your wishlist as a PDF or CSV

Price Alerts

Get notified when prices drop on your wishlist items

@push('scripts') @endpush @push('styles') @endpush @endsection