Edit Invoice - Order #{{ $order->external_order_id ?? $order->order_id }}

Pricing Configuration
Invoice Items
@foreach($orderItems as $index => $item) @endforeach
Part Number Description Mfg Part # Qty Buy Price Sale Price List Price Total
{{ $item['part_number'] }} {{ $item['description'] }} ${{ number_format($item['total'], 2) }}
Additional Charges
@if(count($additionalCharges) > 0) @foreach($additionalCharges as $index => $charge) @endforeach
Description Amount Action
@else

No additional charges added.

@endif
Billing Information
Shipping Information
Order Summary
Subtotal: ${{ number_format($subtotal, 2) }}
Tax: ${{ number_format($taxAmount, 2) }}
Shipping: ${{ number_format($shippingAmount, 2) }}
Grand Total: ${{ number_format($grandTotal, 2) }}