@extends('layout.template') @section('title','Order Success') @section('content')
Thank you for your purchase
Order ID: #{{ $order['order_number'] }}
Date: {{ $order['order_date'] }}
Status: {{ ucfirst($order['status']) }}
Total: ₹{{ number_format($order['amounts']['total'],2) }}
Payment: {{ strtoupper($order['payment']['method']) }} ({{ ucfirst($order['payment']['status']) }})
{{ $order['billing_address']['name'] }}
{{ $order['billing_address']['address_line1'] }}
{{ $order['billing_address']['address_line2'] }}
{{ $order['billing_address']['city'] }}, {{ $order['billing_address']['state'] }}
{{ $order['billing_address']['pincode'] }}
{{ $order['billing_address']['phone'] }}
{{ $order['shipping_address']['name'] }}
{{ $order['shipping_address']['address_line1'] }}
{{ $order['shipping_address']['address_line2'] }}
{{ $order['shipping_address']['city'] }}, {{ $order['shipping_address']['state'] }}
{{ $order['shipping_address']['pincode'] }}
{{ $order['shipping_address']['phone'] }}