@extends('layouts.portal') @section('content')
@csrf

Billing Information

Payment Method

Order Summary

@foreach($cart as $item)
{{ $item['name'] }}
Qty: {{ $item['quantity'] }}
₹{{ number_format($item['price'] * $item['quantity'], 2) }}
@endforeach
Subtotal ₹{{ number_format($total, 2) }}
Tax (0%) ₹0.00
Total ₹{{ number_format($total, 2) }}
← Back to Cart
@endsection