@extends('layouts.app') @section('content')

Produk Favorit

@if (Cart::instance('wishlist')->content()->count() > 0)
@foreach ($items as $item) @endforeach
Produk Nama Harga Quantity Action
{{ $item->name }}

{{ $item->name }}

{{--
  • Color: Hitam
  • Size: L
--}}
${{ $item->price }} {{ $item->qty }}
@csrf
@csrf @method('DELETE')
@else

No item found in your wishlist

Wishlist Now
@endif
@endsection