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

Order Placed Successfully

Thank you. Your order has been placed successfully.

Order No {{ $order->order_no }}
Invoice No {{ $order->invoice_no }}
Payment Method {{ $order->payment_method }}
Payment Status @if($order->payment_status == 'SUCCESS') Success @else Pending @endif
Order Status {{ $order->order_status }}
Total Amount ₹{{ number_format($order->total_amount, 2) }}
Order Items
@foreach($order->items as $item) @endforeach
Product Qty Price Total
{{ $item->product_name }} {{ $item->quantity }} ₹{{ number_format($item->price, 2) }} ₹{{ number_format($item->total, 2) }}
Continue Shopping
@endsection