@extends('frontend.layouts.app', ['title' => 'New Products']) @section('content')

New Products

@foreach ($products as $product) @php $isInWishlist = $wishlist->contains('product_id', $product->product_id); @endphp @endforeach
@endsection