feat: show inquiry status with rooms in step 1

This commit is contained in:
Björn Fromme
2026-03-16 12:00:56 +01:00
parent ea162972fa
commit 82a8541af1
5 changed files with 6 additions and 8 deletions
+1
View File
@@ -258,6 +258,7 @@ class BookingService
$selection->id = $room->id;
$selection->label = $room->label;
$selection->price = $room->price;
$selection->status = $room->status;
$selection->maxQuantity = $room->available;
$selection->capacity = $room->minPax;
$selection->quantity = $roomsIdsAndQuantities[$room->id] ?? 0;