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

My Wishlist ({{ $wishlists->count() }} items)

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

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

@csrf
@csrf
@endforeach
@else

Your wishlist is empty

Browse Products
@endif
@endsection