@lang('Total Products Found:') {{ $wishlists->count() }}
@if($wishlists->count() > 0)
@foreach ($wishlists as $product)
@include('includes.frontend.home_product', [
'class' => 'col-sm-6 col-md-6 col-lg-4 col-xl-3',
'wishlist' => true,
])
@endforeach
{{ $wishlists->links('includes.frontend.pagination') }}
@else
@lang('No Product Found')
@endif