inlineModel() 공개 메소드

Opens a inline form with a given model
또한 보기: Bootstrapper\Form::inline()
또한 보기: Illuminate\Html::model()
public inlineModel ( mixed $model, array $attributes = [] ) : string
$model mixed
$attributes array
리턴 string
예제 #1
0
 /**
  * Opens a inline form with a given model
  *
  * @param mixed $model
  * @param array $attributes
  * @return string 
  * @see Bootstrapper\Form::inline()
  * @see Illuminate\Html::model()
  * @static 
  */
 public static function inlineModel($model, $attributes = array())
 {
     return \Bootstrapper\Form::inlineModel($model, $attributes);
 }