/**
  *This method loads the projects home page 
  *@param null
  *@return void
  *@throws This method does not throw an error
  */
 public function getIndex()
 {
     //get all projects from the database
     $data['projects'] = ProjectsModel::all();
     //get all tasks
     $data['tasks'] = TasksModel::all();
     //load the view file with this information
     return View::make('home/index', $data);
 }