@extends('layouts.web.index') @section('content') @include('layouts.web.header')

Checkout

Customer Information
@csrf
@error('customer_name')
{{ $message }}
@enderror
@error('customer_email')
{{ $message }}
@enderror
@error('customer_phone')
{{ $message }}
@enderror
@error('payment_method')
{{ $message }}
@enderror
@error('billing_address')
{{ $message }}
@enderror
Order Items
@foreach($cartItems as $item) @endforeach
Product Qty Price Total
{{ $item->book->title }}
{{ $item->book->title }}
by {{ $item->book->author }}
{{ $item->quantity }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->price * $item->quantity, 2) }}
Order Summary
Subtotal: ₹{{ number_format($subtotal, 2) }}
Tax (8%): ₹{{ number_format($taxAmount, 2) }}
Shipping: FREE

Total: ₹{{ number_format($total, 2) }}
Digital Delivery: Your PDF books will be delivered to your email address immediately after payment confirmation.
@include('layouts.web.footer') @endsection