@extends('layouts.app') @section('title', 'Order Receipt #' . $order->order_number) @section('content')
Thank you for your order. We are preparing your footwear drop for dispatch.
{{ config('company.tagline', 'Step Into Style') }}
{{ config('company.address') }}
{{ $order->shipping_name }}
{{ $order->shipping_address }}
{{ $order->shipping_city }} - {{ $order->shipping_pincode }}
Phone: {{ $order->shipping_phone }}
Status: {{ $order->status_label }}
@if($order->courier_name)Courier: {{ $order->courier_name }}
@endif @if($order->tracking_number)Tracking ID: {{ $order->tracking_number }}
@endifEstimated Delivery: Within 3-5 Business Days
| 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) }} |