*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'email' => $this->email, 'bio' => $this->bio, 'image_path' => $this->image_path, 'followers' => $this->followers, 'followings' => $this->followings, 'articles' => $this->articles, ]; } }