@php $wishlist_data = $data['fetch_product_on_wishlist']; $wish_list_product = $wishlist_data['product_array']; @endphp @extends('layouts.user-inner') @section('content')
@if (!empty($wish_list_product))
@foreach ($wish_list_product as $product) @endforeach
Product Price Stock
{{ $product['product_name'] }} QAR @if ($product['offer_datas']) @php $offer_details = $product['offer_datas']; $offer_price = $offer_details['product_offer_amount']; $offer_percentage = $offer_details['product_offer_percentage']; @endphp {{ $product['product_price'] }} {{ $offer_price }} @else {{ $product['product_price'] }} @endif @if ($product['product_stock'] < 1) Out Of Stock@elseIn Stock @endif Add To Cart Remove Remove
@else
Your Wish List Empty
@endif
@push('custom-scripts') @endpush @endsection