@extends('front.user.layout') @section('title', 'Wishlist') @section('content')

Wishlist

{{--
--}} {{-- --}} {{--

To

--}} {{-- --}} {{--
--}}
@if(count($products) > 0) @php $counter = 1; @endphp @forelse($products as $item) @php $counter++; @endphp @empty

Your Wishlist is empty

@endforelse @else

Your Wishlist is empty

@endif {{$products->links('vendor.pagination.user-dashboard')}}
S No Image Name Status Price Actions
{{$counter}}

{{$item->product->product_name ?? ''}}

{{$item->product->category->name ?? ''}}
@if($item->product->product_qty > 0) In Stock @else Out of Stock @endif
${{$item->product->current_price}}
@endsection @section('scripts') @endsection