Amazon.com - Order {{ $invoice->invoice_number }}
Final Details for Order #{{ $invoice->invoice_number }}

Order Placed: {{ $invoice->issue_date->format('F d, Y') }}

Amazon.com order number: {{ $invoice->invoice_number }}

Order Total: ${{ number_format($invoice->total_amount, 2) }}

@if($invoice->status === 'paid')
Delivered on {{ $invoice->updated_at->format('F d, Y') }}
@endif
Items Ordered Price
@foreach($invoice->items as $item)
{{ $item->quantity }} of: {{ $item->product_name }}@if($item->description), {{ $item->description }}@endif
Sold by: inspire Direct
${{ number_format($item->unit_price, 2) }}
@endforeach

Shipping Address:

{{ $invoice->customer_name }}

@if($invoice->customer_address)

{!! nl2br(e($invoice->customer_address)) !!}

@endif

Shipping Speed:

Standard

Item(s) Subtotal: ${{ number_format($invoice->subtotal, 2) }}
Shipping & Handling: ${{ number_format($invoice->shipping_cost, 2) }}
@if($invoice->discount_amount > 0)
Free Shipping: -${{ number_format($invoice->discount_amount, 2) }}
@endif
Total before tax: ${{ number_format($invoice->subtotal + $invoice->shipping_cost - $invoice->discount_amount, 2) }}
Estimated tax to be
collected:
${{ number_format($invoice->tax_amount, 2) }}
Total for This Shipment: ${{ number_format($invoice->total_amount, 2) }}

Payment information

Payment Method:

Visa | Last digits: 1027

Billing address

{{ $invoice->customer_name }}

@if($invoice->customer_address)

{!! nl2br(e($invoice->customer_address)) !!}

@endif
Item(s) Subtotal: ${{ number_format($invoice->subtotal, 2) }}
Shipping & Handling: ${{ number_format($invoice->shipping_cost, 2) }}
@if($invoice->discount_amount > 0)
Free Shipping: -${{ number_format($invoice->discount_amount, 2) }}
@endif
Total before tax: ${{ number_format($invoice->subtotal + $invoice->shipping_cost - $invoice->discount_amount, 2) }}
Estimated tax to be
collected:
${{ number_format($invoice->tax_amount, 2) }}
Grand Total: ${{ number_format($invoice->total_amount, 2) }}