INVOICE
{{ $invoiceNumber }}
Date: {{ $invoiceDate->format('M d, Y') }}
{{ $companyInfo['name'] }}
{{ $companyInfo['address'] }}
{{ $companyInfo['city'] }}, {{ $companyInfo['state'] }} {{ $companyInfo['zip'] }}
Phone: {{ $companyInfo['phone'] }} | Email: {{ $companyInfo['email'] }}
Bill To
{{ $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 @if($order->customer_email) Email: {{ $order->customer_email }} @endif
Ship To
{{ $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
@foreach($items as $item) @endforeach
Part Number Description Qty Unit Price Total
{{ $item['part_number'] }} {{ $item['description'] }} {{ $item['quantity'] }} ${{ number_format($item['sale_price'], 2) }} ${{ number_format($item['total'], 2) }}
Subtotal: ${{ number_format($subtotal, 2) }}
@if($tax > 0)
Tax: ${{ number_format($tax, 2) }}
@endif @if($shipping > 0)
Shipping: ${{ number_format($shipping, 2) }}
@endif
Total Due: ${{ number_format($grandTotal, 2) }}