From cea524fde79f9ed2a96bb8ad2d38374048e01f52 Mon Sep 17 00:00:00 2001 From: blt950 Date: Fri, 24 Jun 2022 23:41:31 +0200 Subject: [PATCH] Changed full_name_cid to paranthesis instead --- app/Http/Resources/UserCollection.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,