예제 #1
0
파일: Field.php 프로젝트: ablunier/crud
 public function getFormField()
 {
     if (!$this->hideValue()) {
         if (Request::old($this->name)) {
             $this->formField->val(Request::old($this->name));
         }
     }
     return $this->formField;
 }