Esempio n. 1
0
 /**
  * display field on "hide" status
  * 
  * @return string
  */
 public function hide()
 {
     return Form::hidden($this->name, $this->value);
 }
Esempio n. 2
0
 public function edit()
 {
     return Form::checkbox($this->name, $this->checked_value, $this->checked, $this->attributes);
 }
Esempio n. 3
0
 public function edit()
 {
     return Form::textarea($this->name, $this->value, $this->attributes);
 }
Esempio n. 4
0
 public function edit()
 {
     return Form::select($this->name, $this->options, $this->value, $this->attributes);
 }