/**
  * Get the name of an innovation
  * @param $id
  * @return mixed
  */
 public function getInnovationName($id)
 {
     return Innovation::where('id', $id)->first()->innovationTitle;
 }