@extends('layouts.lookatme') @section('title', trans('message.wishlist')) @section('content')

{{ trans('message.wishlist') }}


@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
@endsection