@include('includes.pdf-style')
{{ config('app.name') }}
ORDER {{ $id }}
{{ $created_at }}
BILLING ADDRESS
@if ($billing_address)
{{ $billing_address }}
@else
No billing info provided
@endif
@foreach ($line_items as $item) @endforeach
ITEMS PRICE QTY TOTAL
@php $thumbnail = $item->thumbnail ?? optional($item->product)->thumbnail; @endphp

{{ $item->title }} @if ($item->variant_title != 'Default')
{{ $item->variant_title }} @endif

{{ format_amount($item->price * 100) }} {{ $item->quantity }} {{ format_amount($item->total * 100) }}
Subtotal: {{ $sub_total }}
Discount: -{{ $discount_total }}
Tax: +{{ $tax_total }}
Grand Total: {{ $grand_total }}
Cash Paid: {{ $paid_total }}
Due Amount: {{ $due_amount }}
Thank you for shopping with us!
{{ config('app.name') }}
{{ $location }}