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

My Wishlist

@if($wishlists->count() > 0)
@foreach($wishlists as $wishlist)
{{ $wishlist->product->name }}
{{ $wishlist->product->name }}

${{ number_format($wishlist->product->price, 2) }}

@csrf @method('DELETE')
View Product
@endforeach
{{ $wishlists->links() }}
@else

Your wishlist is empty

Start adding your favorite stitched and unstitched garments from Rathore Collection to your wishlist.

Start Shopping
@endif
@endsection