feat: show inquiry status with rooms in step 1

This commit is contained in:
Björn Fromme
2025-12-10 15:33:13 +01:00
parent 7665385cbf
commit e8c2261b7e
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;