@extends('frontend.layout.template') @section('content')
@if(!empty($wishlist))

WISHLIST

@foreach($wishlist as $key=>$item)
{{$item['name']}}

{{$item['name']}}

₹{{$item['discount']}} ₹{{$item['price']}}
@php $product=App\Models\Product::where('id',$item['product_id'])->first(); $attribute=getAttributes($product->category_id); @endphp @if(count($attribute)>0) @foreach($attribute as $attr_data) @endforeach @endif
@endforeach
@else

WISHLIST

No products were added to the wishlist

CONTINUE SHOPPING
@endif
@endsection