@if(session()->has('cart') && count(session('cart')) > 0)
# |
Name |
Image |
Price |
Quantity |
Amount |
Action |
@php $total=0; @endphp
@foreach(session('cart') as $id => $product)
{{$loop->index+1}} |
{{ $product['name'] }} |
|
{{ $product['price'] }} |
|
{{ $product['price'] * $product['quantity'] }} |
Delete
|
@php $total += $product['price'] * $product['quantity']; @endphp
@endforeach
Total: |
{{$total}} |
|
@else
Your cart is empty.
@endif