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

Checkout

@if($errors->any())
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf
Order Summary
    @foreach($cart as $item)
  • {{ $item['name'] }} × {{ $item['quantity'] }} Rs {{ number_format($item['price'] * $item['quantity'], 2) }}
  • @endforeach
Subtotal Rs {{ number_format($subtotal, 2) }}
Delivery Charge Rs {{ number_format($deliveryCharge, 2) }}

Total: Rs {{ number_format($total, 2) }}
@endsection