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

Order Success

Order Placed Successfully!

Thank you for your purchase. Your order has been received and is being processed.

Order Details

Order Number: {{ $order->order_number }}

Total Amount: ₹{{ number_format($order->total_amount, 2) }}

Payment Status: {{ ucfirst($order->payment_status) }}

Order Status: {{ ucfirst($order->order_status) }}

@if($order->payment_status === 'paid')
Digital Delivery: Your PDF books have been sent to your email address. Please check your inbox and spam folder.
Your Purchased Books:
@else
Payment Pending: Your order is pending payment confirmation. You will receive your PDF books once payment is confirmed.
@endif
@include('layouts.web.footer') @endsection