@extends('layouts.app') @section('title', 'Order Receipt #' . $order->order_number) @section('content')

Order Confirmed!

Thank you for your order. We are preparing your footwear drop for dispatch.

2BROTHER.HUB

{{ config('company.tagline', 'Step Into Style') }}

{{ config('company.address') }}

Order Number {{ $order->order_number }}
Order Date {{ $order->created_at->format('d M Y, h:i A') }}
Payment Method {{ $order->payment_method }}
Payment Status {{ $order->payment_status }}

Shipping Address

{{ $order->shipping_name }}

{{ $order->shipping_address }}

{{ $order->shipping_city }} - {{ $order->shipping_pincode }}

Phone: {{ $order->shipping_phone }}

Delivery & Courier

Status: {{ $order->status_label }}

@if($order->courier_name)

Courier: {{ $order->courier_name }}

@endif @if($order->tracking_number)

Tracking ID: {{ $order->tracking_number }}

@endif

Estimated Delivery: Within 3-5 Business Days

Purchased Items

@foreach($order->items as $item) @endforeach
Item Description Qty Unit Price Tax (GST) Total
{{ $item->product_name }} @if($item->size || $item->color) @if($item->size) Size: {{ $item->size }} @endif @if($item->color) · Color: {{ $item->color }} @endif @endif {{ $item->quantity }} ₹{{ number_format($item->unit_price, 2) }} ₹{{ number_format($item->tax_amount, 2) }} ₹{{ number_format($item->line_total, 2) }}
Subtotal ₹{{ number_format($order->subtotal, 2) }}
@if($order->discount_total > 0)
Discount Saved -₹{{ number_format($order->discount_total, 2) }}
@endif @if($order->coupon_discount > 0)
Coupon Voucher ({{ $order->coupon_code }}) -₹{{ number_format($order->coupon_discount, 2) }}
@endif
Total Tax (GST) ₹{{ number_format($order->tax_total, 2) }}
Grand Total Paid ₹{{ number_format($order->grand_total, 2) }}
@endsection