diff --git a/src/Export/ExportService.php b/src/Export/ExportService.php index 4acc92c..7877f8a 100755 --- a/src/Export/ExportService.php +++ b/src/Export/ExportService.php @@ -195,6 +195,7 @@ public function allRegistrationDataToCSV(Event $event, User $adminUser): array 'registrationApproveDate', 'registrationPayDate', // 35 'entryDate', + 'leaveDate', 'patrolOrTroopLeaderId', 'patrolName', 'patrolParticipantCount', @@ -286,6 +287,7 @@ public function allRegistrationDataToCSV(Event $event, User $adminUser): array $participant->registrationApproveDate !== null ? $participant->registrationApproveDate->format('d. m. Y H:i:s') : '', // 35 $participant->registrationPayDate !== null ? $participant->registrationPayDate->format('d. m. Y H:i:s') : '', $participant->entryDate !== null ? $participant->entryDate->format('d. m. Y H:i:s') : '', + $participant->leaveDate !== null ? $participant->leaveDate->format('d. m. Y H:i:s') : '', ], $ptPart, $istPart