Example #1
0
 /**
  * Create a radio button input field.
  *
  * @param string $name
  * @param mixed $value
  * @param bool $checked
  * @param array $options
  * @return string 
  * @static 
  */
 public static function radio($name, $value = null, $checked = null, $options = array())
 {
     //Method inherited from \Illuminate\Html\FormBuilder
     return \Bootstrapper\Form::radio($name, $value, $checked, $options);
 }