@section('wishlist-page')

My Wishlist

@if($wishlistItems->isEmpty())

Your wishlist is empty.

@else
@foreach($wishlistItems as $item)
@if($item->product->image) {{$item->product->name}} @else
No image
@endif

{{ $item->product->name }}

{{ str_limit($item->product->slug ?? '', 30) }}

KSh {{ number_format((float) $item->product->regular_price ?? 0, 2) }}

@endforeach
@endif
@endsection