@include('layouts.header') @include('layouts.tostMessage')

Your Wishlist

@if ($wishlists->isEmpty())

No products in your wishlist.

@else
@foreach ($wishlists as $wishlist)
{{ $wishlist->product->color }} {{ $wishlist->product->name }} ${{ $wishlist->product->price }}
@csrf @method('DELETE')
@endforeach
@endif
@include('layouts.footer')