@extends('layouts.app') @section('title', 'Order Details - ' . $order->order_number) @section('content')
{{ $order->created_at->format('M d, Y \a\t h:i A') }}
| Product | Price | Quantity | Total |
|---|---|---|---|
|
{{ $item->product_name }}
SKU: {{ $item->product_sku }} |
{{ \App\Support\Currency::symbol() }}{{ number_format($item->price, 2) }} | {{ $item->quantity }} | {{ \App\Support\Currency::symbol() }}{{ number_format($item->total, 2) }} |
{{ $track->description }}
@if($track->location) {{ $track->location }} @endif{{ $track->created_at->format('M d, Y h:i A') }}
No tracking information available yet
@endifNo payment record available yet.
@endif{{ $order->shipping_address }}