@if(!$products->isEmpty())
@foreach($products as $product)
@include('templates.lookatme.components.card',[
'class'=>'tw-bg-gray',
'size'=>'tw-w-full',
'src'=> $product->picture_url,
'price'=>$product->price_text,
'title'=>$product->name,
'link' => route('product.detail',$product->id),
'discount' => $product->getDiscountPrice($product->unit_price),
])
@endforeach
@else
You don't have any wish listing.
@endif