*/ public function toArray($request): array { return [ 'type' => 'users', 'id' => $this->user->id, 'name' => $this->user->name, 'email' => $this->user->email, 'avatar' => $this->user->avatar, 'is_admin' => $this->user->is_admin, 'preferences' => $this->user->preferences, 'is_prospect' => $this->user->is_prospect, 'sso_provider' => $this->user->sso_provider, 'sso_id' => $this->user->sso_id, ]; } }