/**
  * Method to render the view.
  *
  * @return  string  The rendered view.
  *
  * @since   1.0
  * @throws  \RuntimeException
  */
 public function render()
 {
     $this->renderer->set('projects', $this->model->getItems());
     return parent::render();
 }