public function findFeaturedProjects($limit)
 {
     $projects = ProjectArtifactId::orderBy('created_at', 'desc')->with('projectGroupId')->limit($limit)->get();
     return $projects->toArray();
 }