@extends('site.master') @section('title','My Wislist') @section('content') @include('site.layouts.breadcrumb')
@foreach($wishList as $wishListProduct) @endforeach
Image Product Price Quantity Buy Remove
@if(file_exists(public_path().'/uploads/product/'.$wishListProduct->product->thumb_image) && !empty($wishListProduct->product->thumb_image)) Thumbnail Image @else Thumbnail Image @endif @if($wishListProduct->product) {{ $wishListProduct->product->name }}@endif @if($wishListProduct->product) ৳  @if(!empty($wishListProduct->product->retail_price_after_discount)) {{ $wishListProduct->product->retail_price_after_discount }} @else {{ $wishListProduct->product->retail_price }} @endif @endif
ADD TO CART
@stop @section('page_scripts') @endsection