@extends('frontend.layouts.app') @section('contents')

Your Wishlist

There are 5 products in this list
@foreach($wishlistItems as $item) @endforeach
Product Price Stock Status Remove
#
{{ $item->product?->name }}
@php $rating = $item->product?->rating(); $percent = ($rating / 5) * 100; @endphp
({{ $rating }})
@php $price = $item->product?->getEffectivePriceAndStock(); @endphp

{{ config('settings.site_currency_icon') }} {{ $price['price'] }}

@if($price['in_stock']) In Stock @else Out of Stock @endif
@endsection