@extends('layouts.app') @section('content')
| Order ID | Date Placed | Customer | Location | Items | Total | Status | Actions | |||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| #{{ $order->external_real_order_id ?? $order->order_id }} | {{ $order->date_placed ? $order->date_placed->format('m/d/Y H:i') : 'N/A' }} | {{ $order->shipping_first_name }} {{ $order->shipping_last_name }} | {{ Str::limit($order->customer_email, 30) }} | {{ $order->shipping_city }}, {{ $order->shipping_state }} | {{ $order->items->count() }} items | ${{ number_format($order->order_total, 2) }} | @if($order->status) {{ $order->status->status }} @else Unknown @endif | |||||||||||||||
Order Items:
Shipping Address:
{{ $order->shipping_first_name }} {{ $order->shipping_last_name }} @if($order->shipping_company) {{ $order->shipping_company }} @endif {{ $order->shipping_street_address }} {{ $order->shipping_city }}, {{ $order->shipping_state }} {{ $order->shipping_zip }} @if($order->shipping_phone) Phone: {{ $order->shipping_phone }} @endif
Billing Address:
{{ $order->billing_first_name }} {{ $order->billing_last_name }} @if($order->billing_company) {{ $order->billing_company }} @endif {{ $order->billing_street_address }} {{ $order->billing_city }}, {{ $order->billing_state }} {{ $order->billing_zip }} @if($order->billing_phone) Phone: {{ $order->billing_phone }} @endif |
||||||||||||||||||||||
|
No Will Call orders found matching your criteria. |
||||||||||||||||||||||