feat: show room pricing details

This commit is contained in:
Björn Fromme
2026-03-16 11:59:10 +01:00
parent 0bd9d79bbe
commit 3c1192298b
5 changed files with 17 additions and 9 deletions
+1
View File
@@ -159,6 +159,7 @@ class BookingService
$selection = new RoomSelectionDto();
$selection->roomId = $room->id;
$selection->roomLabel = $room->label;
$selection->roomPrice = $room->price;
$selection->maxQuantity = $room->available;
$selection->capacity = $room->minPax;
$selection->quantity = $roomsIdsAndQuantities[$room->id] ?? 0;