@php $quantity = 0; $product_id = $product['warehouse_product_id']; @endphp @if(!empty($cart_list)) @foreach($cart_list as $cart) @if($cart['warehouse_product_id'] == $product_id) @php $quantity = $cart['qty']; @endphp @endif @endforeach @endif @if($quantity > 0) @php $style =""; $cart_style ="display:none"; @endphp @else @php $style ="display:none"; $cart_style ="border-radius: 5px !important;"; @endphp @endif @php $available_qty = $product['available_qty']; if ($product['weight_based'] == '1') { $available_qty = $product['available_qty_weight_based']; } @endphp @if ($available_qty > 0) @endif