예제 #1
0
파일: Field.php 프로젝트: raftalks/former
 /**
  * Change the field's name
  *
  * @param  string $name The new name
  */
 public function name($name)
 {
     $this->name = $name;
     // Also relink the label to the new name
     Former::control()->setLabel($name);
 }