Neue Buchungsanfrage eingegangen
Eine neue Buchungsanfrage wurde über die Webseite gestellt.
Details zur Buchung ({{ $booking->booking_number }}):
- Gast: {{ $booking->person->firstname }} {{ $booking->person->surname }}
- Firma: {{ $booking->person->company ?: 'N/A' }}
- Email: {{ $booking->person->email }}
- Mobil: {{ $booking->person->mobile ?: 'N/A' }}
- Anreise: {{ $booking->start->format('d.m.Y H:i') }}
- Abreise: {{ $booking->end->format('d.m.Y H:i') }}
- Anzahl Gäste: {{ $booking->guests }}
- Frühstück: {{ $booking->breakfast ? 'Ja' : 'Nein' }}
Gebuchte Zimmer:
@foreach($booking->details as $detail)
- Zimmer {{ $detail->room->roomnumber }} ({{ $detail->room->name }})
@endforeach
Bitte prüfen Sie die Anfrage im Administrationsbereich.