@extends('layouts.app') @section('title', 'Order ' . $order->order_number) @section('content')
Placed on {{ $order->order_date->format('M j, Y g:i A') }}
Your Product
${{ number_format($item->unit_price, 2) }}
Qty: {{ $item->quantity }}
${{ number_format($item->total_price, 2) }}
{{ $order->shipping_address }}
{{ $order->notes ?: 'No special instructions' }}
Tracking #: {{ $shipment->tracking_number }}
Shipped Date
{{ $shipment->shipment_date->format('M j, Y') }}
Est. Delivery
{{ $shipment->estimated_delivery->format('M j, Y') }}
{{ $order->buyer->name }}
{{ $order->buyer->email }}
@if($order->buyer->company_name){{ $order->buyer->company_name }}
@endif