@extends('front.app') @section('title', 'Wishlist') @section('content') @include('customer.dashboard-nav') @include('customer.dashboard-nav-dropdown') Wishlist @forelse($wishlistItems as $wishlistItem) {{ $wishlistItem->product->subcategories->name ?? ($wishlistItem->product->categories->name ?? '')}} {{ Str::limit($wishlistItem->product->name, 40) }} {{-- RATING --}} @for($i = 1; $i <= 5; $i++) @endfor {{ $wishlistItem->product->review_count }} reviews {{-- PRICE --}} @empty ❤️ Your wishlist is empty Looks like you haven't added anything yet. Continue Shopping @endforelse @endsection
Looks like you haven't added anything yet.