horizontalModel() public method

Opens a horizontal form with a given model
See also: Bootstrapper\Form::horizontal()
See also: Illuminate\Html::model()
public horizontalModel ( mixed $model, array $attributes = [] ) : string
$model mixed
$attributes array
return string
Example #1
0
 /**
  * Opens a horizontal form with a given model
  *
  * @param mixed $model
  * @param array $attributes
  * @return string 
  * @see Bootstrapper\Form::horizontal()
  * @see Illuminate\Html::model()
  * @static 
  */
 public static function horizontalModel($model, $attributes = array())
 {
     return \Bootstrapper\Form::horizontalModel($model, $attributes);
 }