Hi {{ $booking->first_name }}, thanks — we've received your payment for booking {{ $booking->reference }}.

@foreach (($booking->price_breakdown ?? []) as $line) @endforeach
{{ $line['label'] }}${{ number_format($line['amount'], 2) }}
Subtotal (ex GST)${{ number_format($booking->total_ex_gst, 2) }}
GST${{ number_format($booking->gst_amount, 2) }}
Total paid including GST${{ number_format($booking->total_inc_gst, 2) }}
@if ($booking->customer?->pm_last_four)

Charged to card ending {{ $booking->customer->pm_last_four }}. This card is kept on file for any excess weight charged when the bin is collected.

@endif

This is your tax invoice — keep it for your records.