@extends('layouts.app') @section('content')
| Order | Customer | Total | Status | Date | Action | |
|---|---|---|---|---|---|---|
| {{ $order->order_name }} | {{ $order->customer['first_name'] ?? '' }} {{ $order->customer['last_name'] ?? '' }} | {{ $order->email }} | ${{ number_format($order->total_price, 2) }} {{ $order->currency }} | {{ $order->status ?? '—' }} | {{ $order->shopify_created_at ? $order->shopify_created_at->format('Y-m-d H:i') : '—' }} | |
Shipping Address{{ $order->shipping_address['address1'] ?? '-' }} {{ $order->shipping_address['city'] ?? '' }}, {{ $order->shipping_address['province'] ?? '' }} {{ $order->shipping_address['zip'] ?? '' }} {{ $order->shipping_address['country'] ?? '' }} Billing Address{{ $order->billing_address['address1'] ?? '-' }} {{ $order->billing_address['city'] ?? '' }}, {{ $order->billing_address['province'] ?? '' }} {{ $order->billing_address['zip'] ?? '' }} {{ $order->billing_address['country'] ?? '' }} Line Items
Note{{ $order->note ?? '-' }} PricesSubtotal: ${{ number_format($order->subtotal_price, 2) }} Tax: ${{ number_format($order->total_tax, 2) }} Total: ${{ number_format($order->total_price, 2) }} |
||||||
| No orders found. | ||||||