@php
$quantity = 0;
$product_id = $item['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: 100px !important;"; @endphp
@endif