Shopping Bag ({{ getTotalCart() }})
@php $total=0; @endphp @forelse(carts() as $key=>$item) @php $sub_total=$item['price']*$item['quantity']; $total +=$sub_total; @endphp
{{ $item['name']}}
BDT: {{ $item['price'] }}
BDT {{ $item['price'] * $item['quantity'] }}
@csrf @method('DELETE')
@empty @endforelse