@php
$total = 0;
@endphp
@foreach ($cartItem as $item)
{{$item->products->name}}
RS {{$item->products->selling_price}}
@if($item->products->qty >= $item->prod_qty)
@php
$total += $item->products->selling_price * $item->prod_qty;
@endphp
@else
Out of Stock
@endif