*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'email' => $this->email, 'role' => $this->role, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, 'projects' => ProjectResource::collection($this->whenLoaded('projects')), ]; } }