fix: key participant status like the participants they belong to

This commit is contained in:
2026-09-14 15:13:21 +02:00
parent 67c685f6c1
commit a3e8c737de
3 changed files with 146 additions and 4 deletions
@@ -96,7 +96,7 @@ class BookingPayloadBuilder
foreach ($bookingData->participants as $index => $participant) {
$participantPayload = [
'@id' => $index + 1,
'status' => $bookingData->participantsStatus[$index],
'status' => $bookingData->participantsStatus[$index] ?? null,
...$participant->toPayload(),
];