{{ __('Invoice') }} {{ $sale->invoice_number ?? ('#'.$sale->id) }} {{ $sale->created_at?->format('d M Y, h:i A') }}
{{ $sale->shop->name }} @if ($sale->shop->invoice_logo_path) {{ __('Logo') }}: {{ $sale->shop->invoice_logo_path }} @endif
@foreach ($sale->items as $item) @endforeach
{{ __('Product') }} {{ __('Qty') }} {{ __('Rate') }} {{ __('Line Total') }}
{{ $item->product?->name ?? ('#'.$item->product_id) }} {{ $item->quantity }} {{ $item->unit_price }} {{ $item->line_total }}
{{ __('Payment Type') }}: {{ strtoupper($sale->payment_type->value) }} {{ __('Total') }}: {{ $sale->total_amount }}
{{ __('Back to POS') }} {{ __('Print') }}