@include("alliedService.include.header") @php $total = 0 @endphp @if(session('cart')) @foreach(session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp @endforeach @endif
Product Price Quantity Subtotal

{{ $details['name'] }}

${{ $details['price'] }} ${{ $details['price'] * $details['quantity'] }}

Total ${{ $total }}

Continue Shopping
@include("alliedService.include.footer")