@php $binNames = $booking->bookingBins->map(fn ($bin) => $bin->binType?->name)->filter()->implode(', '); @endphp Booking confirmed Hi {{ $booking->first_name }}, your booking is confirmed. Booking {{ $booking->reference }} {{ $binNames ?: 'Your bin' }}@if ($booking->address), {{ $booking->address }}@endif @if ($booking->delivery_date) Delivery {{ $booking->delivery_date->format('l jS \o\f F') }}@if ($booking->delivery_window), {{ $booking->delivery_window }}@endif @endif @if ($booking->collection_date) Collection {{ $booking->collection_date->format('l jS \o\f F') }} @endif @if ($booking->pay_on_invoice) ${{ number_format($booking->total_inc_gst, 2) }} including GST — invoice to follow @else Paid ${{ number_format($booking->total_inc_gst, 2) }} including GST @endif What happens next: 1. We confirm your delivery window 2. Fill it to the line, no prohibited items 3. We collect and email the final invoice Need to change anything? Just reply to this email. @include('emails.text.partials.footer')