@extends('frontend.layout.master') @section('title', $pageTitle) @section('content')
@php $total = 0 @endphp @if(session('cart') && count(session('cart')) > 0)

PRODUCT

PRICE

QUANTITY

TOTAL

@foreach(session('cart') as $id => $details) @php $total += $details['price'] * $details['quantity'] @endphp

{{ $details['name'] }}

₹ {{ $details['price'] }}

- +

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

@endforeach

Total:

Rs. {{ $total }}

@else

Your cart is empty.

Continue to Shop
@endif
@endsection