{{-- Discount Badge --}} @if(!empty($pro['total_discount_price']))
{{ $pro['product_discount_price'] ?? '' }}%
@endif {{-- Product Image --}}
{{-- Title + Author --}}

{{ Str::limit($pro['product_name'] ?? '', 25, '..') }}

{{ Str::limit($pro['product_sub_title'] ?? '', 20, '..') }}

{{ $pro['product_book_author'] }}
{{-- Ratings --}}
@for($i = 1; $i <= 5; $i++) @endfor
({{ $pro['reviews_count'] }})
{{-- Wishlist & Cart --}}
{{-- Price --}}
@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
@if($pro['product_stock_quantity'] > 0) {{-- In Stock --}} @if(Auth::check()) Shop Now @else Shop Now @endif @else {{-- Out of Stock (All Users) --}}
Out of Stock @if(Auth::check()) {{-- Logged-in users only --}} Notify Me @endif
@endif