@if ($location?->receiptLogoUrl())
@endif
{{ $location?->receipt_header ?: $location?->name ?: 'Receipt' }}
{{ $sale->reference }} · {{ optional($sale->paid_at ?? $sale->created_at)->format('d M Y, H:i') }}
|
@foreach ($sale->lines as $line)
|
{{ $line->quantity }}× {{ $line->name }}
|
{{ pos_money($line->line_total_minor, $sale->currency) }}
|
@endforeach
|
| Subtotal |
{{ pos_money($sale->subtotal_minor, $sale->currency) }} |
@if ($sale->loyalty_discount_minor)
| Loyalty |
−{{ pos_money($sale->loyalty_discount_minor, $sale->currency) }} |
@endif
@if ($sale->tip_minor)
| Tip |
{{ pos_money($sale->tip_minor, $sale->currency) }} |
@endif
| Total |
{{ pos_money($sale->total_minor, $sale->currency) }}
|
@if ($sale->loyalty_points_earned)
|
You earned {{ $sale->loyalty_points_earned }} loyalty points on this visit.
|
@endif
@if ($location?->receipt_footer)
{{ $location->receipt_footer }}
@endif
Powered by Ladill POS
|
|