コード例 #1
0
ファイル: form.php プロジェクト: manishnakar/critterapp
 /**
  * Create a file input with the Bootstrap input-file class.
  *
  * @see Laravel\Form::file()
  * @param  string  $name
  * @param  array   $attributes
  * @return string
  */
 public static function file($name, $attributes = array())
 {
     $attributes = Helpers::add_class($attributes, 'input-file');
     return parent::file($name, $attributes);
 }