Example #1
0
 /**
  * Mantém a compatibilidade com snake_case ao acessar atributos
  *
  * @param string $key
  *
  * @return mixed
  */
 public function getAttribute($key)
 {
     $key = snake_case($key);
     return parent::getAttribute($key);
 }