We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b37459 commit 56e5594Copy full SHA for 56e5594
app/Modules/Group/Events/Traits/IsPublishableApplicationEvent.php
@@ -24,7 +24,8 @@ public function getPublishableMessage(): array
24
'id' => $this->group->uuid,
25
'name' => $this->group->displayName,
26
'short_name' => $this->group->expertPanel->short_base_name,
27
- 'status' => $this->group->group_Status,
+ 'status' => optional($this->group->groupStatus)->name, // Retrieve the status name
28
+ // 'status' => $this->group->group_Status,
29
'parent_group' => optional($this->group->parentGroup)->displayName,
30
'type' => $this->group->fullType->name,
31
'affiliation_id' => $this->group->expertPanel->affiliation_id
0 commit comments