@extends('frontend.layouts.app',['title' => 'My Wishlist']) @section('content')
@include('frontend.layouts.sidebar',['title' => 'Wishlist'])

My Wishlist Products

@if ($wishlists->isNotEmpty()) @foreach ($wishlists as $wishlist)

{{ $wishlist->product_name }}

₹{{ $wishlist->price }}MRP {{ $wishlist->mrp }}
@endforeach @else

No Products Found In Wishlist

@endif
{{ $wishlists->links("pagination::bootstrap-4") }}
@endsection