{{-- Customer Info --}}

Customer

Name{{ $order->billing_first_name }} {{ $order->billing_last_name }}
Email{{ $order->customer_email }}
Phone{{ $order->customer_phone ?? '—' }}
Company{{ $order->billing_company ?? '—' }}
Address {{ $order->billing_street_address ?? '—' }}
{{ $order->billing_city }}, {{ $order->billing_state }} {{ $order->billing_zip }}
{{-- Order Meta --}}

Order Info

@if($order->attachment_path) @endif
Quote #{{ $order->quote_number }}
Order #{{ $order->order_number }}
Total${{ number_format($order->total_amount, 2) }}
Created{{ $order->created_at->format('M d, Y g:i A') }}
Transaction ID{{ $order->payment_transaction_id ?? '—' }}
Drawing View File
{{-- Product & Configuration --}}

Configuration

@if($product)

{{ $product->name }}

@endif @php $cfg = $order->configuration; @endphp
{{ $cfg['stalls_count'] ?? 1 }}
Stalls
{{ $cfg['color'] ?? 'N/A' }}
Color
{{ $cfg['urinal_qty'] ?? 0 }}
Urinal Screens
{{ ucfirst($cfg['dock'] ?? 'yes') }}
Loading Dock
@if(!empty($cfg['stalls'])) @foreach($cfg['stalls'] as $num => $stall) @endforeach
Stall Width Door Swing
#{{ $num }} {{ $stall['width'] ?? '36' }}" @if(($stall['width'] ?? '') == '60')ADA@endif {{ $stall['swing'] ?? 'N/A' }}
@endif @if(!empty($cfg['notes']))

Project Notes

{{ $cfg['notes'] }}

@endif