@extends('frontend.layout.app') @section('content')

Home/My Wishlist

Products

Price

View

Add To Cart

Remove


@php $subtotal=0; $dc=0; @endphp @forelse($mywishlist as $key => $cart) @php $product = \App\Models\Product::find($cart['product_id']); @endphp
@php $price=$product->unit_price; $desc=$product->discount; $final_pri=$price-$desc; @endphp
@empty
No Record Found
@endforelse
@endsection