diff --git a/app/Http/Resources/UserCollection.php b/app/Http/Resources/UserCollection.php index 950fd4e..e7731dd 100644 --- a/app/Http/Resources/UserCollection.php +++ b/app/Http/Resources/UserCollection.php @@ -24,7 +24,7 @@ public function toArray($request) 'full_name' => ($this->tokenCan('full_name')) ? "{$this->first_name} {$this->last_name}" : null, - 'full_name_cid' => ($this->tokenCan('full_name')) ? "{$this->first_name} {$this->last_name} - {$this->id}" : null, + 'full_name_cid' => ($this->tokenCan('full_name')) ? "{$this->first_name} {$this->last_name} ({$this->id})" : null, 'email' => ($this->tokenCan('email')) ? $this->email : null,