@php $binNames = $booking->bookingBins->map(fn ($bin) => $bin->binType?->name)->filter()->implode(', '); @endphp New booking {{ $booking->reference }} · {{ $booking->pay_on_invoice ? 'Account (invoice)' : 'Paid by card' }} {{ $booking->first_name }} {{ $booking->last_name }}@if ($booking->company), {{ $booking->company }}@endif {{ $booking->email }} · {{ $booking->mobile }} {{ $binNames ?: 'Bin' }}, {{ $booking->address }} @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->site_notes) Site notes: {{ $booking->site_notes }} @endif ${{ number_format($booking->total_inc_gst, 2) }} including GST @include('emails.text.partials.footer')