@extends('front.layout.app') @section('content')
Your cart items
@php $total = 0 @endphp @if(session('cart')) @foreach(session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp @endforeach @endif
Sno. Image Title Price Quantity Sub Total Action
1 {{ $details['title'] }} ${{ $details['price'] }}
${{ $details['price'] * $details['quantity'] }}
@section('script') @endsection @endsection