@extends('layouts.app') @section('content')

Will Call Orders

Filters
Reset Dashboard
Orders ({{ $orders->total() }} total)
@forelse($orders as $order) @empty @endforelse
Order ID Date Placed Customer Email 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:
@foreach($order->items as $item) @endforeach
Part # Name Supplier Qty Price Status Tracking
{{ $item->part_num }} {{ Str::limit($item->name, 40) }} @if($item->supplier) {{ $item->supplier->label }} @endif {{ $item->qty }} ${{ number_format($item->sale_price, 2) }} @if($item->status) {{ $item->status->status }} @endif @if($item->tracking) {{ $item->carrier }}: {{ $item->tracking }} @else N/A @endif
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.

@if($orders->hasPages())
{{ $orders->withQueryString()->links() }}
@endif
@endsection @section('scripts') @endsection