@include('includes.pdf-style')
{{ config('app.name') }}
{{ $location }}
--------------------- RETAIL INVOICE ---------------------
Invoice No: {{ $id }} Customer: {{ $customer_name }}
Date: {{ $created_at }} Phone: {{ $phone_number ?? '0000000000' }}
@foreach ($line_items as $index => $item) @endforeach
SL ITEM PRICE QTY TOTAL
{{ $index + 1 }}
{{ $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!