@extends('user::layouts.master') @section('breadcrumb_title', trans('backend::translate.Wishlist')) @push('styles') @endpush @section('content')

{{ trans('backend::translate.Wishlist Products') }}

@foreach ($wishlistProducts as $product)

{{ $product->title }}

@include('frontend::components.avg-ratting', [ 'rating' => $product->approved_reviews_avg_ratting, 'class' => 'd-flex list-unstyled', ]) ( {{ __($product->approved_reviews_count) }} {{ $product->approved_reviews_count > 1 ? 'Reviews' : 'Review' }} )
{!! $product->getDisplayPrice() !!}
@endforeach
@endsection