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