@extends('layouts.store') @section('content')

Your Cart

@if(empty($cart))

Your cart is empty.

@else
@foreach($cart as $item) @endforeach
ItemQtyPrice
{{ $item['name'] }}
@csrf @method('PATCH')
₹{{ number_format(($item['price'] * 85) * $item['quantity'], 0) }}
@csrf @method('DELETE')

Total: ₹{{ number_format($subtotal * 85, 0) }}

Proceed to Checkout
@endif
@endsection