Skip to content

Commit

Permalink
Changed full_name_cid to paranthesis instead
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Jun 24, 2022
1 parent cc9342e commit cea524f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Resources/UserCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,

Expand Down

0 comments on commit cea524f

Please sign in to comment.