Hi {{ $booking->customer?->name ?? 'there' }},

Your booking was updated by our team. There is an additional balance due on your appointment.

Booking #{{ $booking->id }}
Scheduled: {{ $booking->scheduled_at?->format('M d, Y h:i A') }}
New total: ${{ number_format($booking->total / 100, 2) }}
Amount paid: ${{ number_format($booking->amount_paid / 100, 2) }}
Balance due: ${{ number_format($balanceDueCents / 100, 2) }}

Pay your balance online

@if ($stripeEnabled)

You can pay securely online with a card using the link above.

@endif

You may also pay this balance in person at your appointment.

Thank you,
{{ config('app.name') }}