@extends('layouts.app') @section('title', 'Your Cart') @section('content')

Your Cart

@if(empty($cart))

Your cart is empty. Continue shopping.

@else
@foreach($cart as $productId => $item) @endforeach
Product Price Quantity Subtotal
{{ $item['name'] }} Rs {{ number_format($item['price'], 2) }}
@csrf
Rs {{ number_format($item['price'] * $item['quantity'], 2) }}
@csrf @method('DELETE')
Total: Rs {{ number_format($total, 2) }}
Proceed to Checkout
@endif
@endsection