*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'role' => $this->role, 'name' => $this->name, 'username' => $this->username, 'email' => $this->email, 'skill' => $this->whenLoaded('skills', function() { return $this->getFormattedSkillsAttribute(); }), 'profile' => $this->whenLoaded('profile', function() { return $this->getFormattedprofileAttribute(); }), ]; } }