@extends('layouts.frontend.app') @section('content') Back to Home Wishlist @include('layouts.frontend.sidebar') @if(count($wishlist) > 0) @foreach ($wishlist as $index => $pro) {{-- {{ $index+1 }}. --}} @if(!empty($pro['product_discount_price'])) {{ $pro['product_discount_price'] }}% @endif {{ Str::limit($pro['product_name'] ?? '', 25, '..') }} By: {{ $pro['product_book_author'] }} Publisher: {{ $pro['product_publisher_name'] }} @if(!empty($pro['total_discount_price'])) ₹{{ number_format($pro['total_discount_price']), 2 }} ₹{{ number_format($pro['product_price']), 2 }} @else ₹{{ number_format($pro['product_price']), 2 }} @endif ADD TO CART REMOVE {{ ($pro['product_available'] ?? 0) > 0 ? "In Stock" : "Out Of Stock" }} Order now and get it in {{ $pro['ships_within'] }} Binding: {{ $pro['product_format'] }} Language: {{ $pro['product_language'] }} @endforeach {{-- Select All ADD TO CART REMOVE Total Items: 0 | Total Value: ₹0 --}} @else Your wishlist is empty. @endif @endsection
Your wishlist is empty.