/**
  * Renders a view for this attribute key. If no view is default we display it's "view"
  * Valid views are "view", "form" or a custom view (if the attribute has one in its directory)
  * Additionally, an attribute does not have to have its own interface. If it doesn't, then whatever
  * is printed in the corresponding $view function in the attribute's controller is printed out.
  */
 public function render($view = "view", $value = false, $return = false)
 {
     return parent::render($view, $value, $return);
 }