adamwathan / bootforms

Rapid form generation with Bootstrap 3 and Laravel.
MIT License
417 stars 103 forks source link

Uploading multiple files #42

Closed iraxl closed 9 years ago

iraxl commented 9 years ago

I need to upload multiple files in my app. To that with Laravel Forms, one would do

Form::files('files[]',array('multiple'=>true)

How can I accomplish this with BootForms?

iraxl commented 9 years ago

Found solution - very elegant.

BootForm::file('Images','images')->multiple(1)
angelodaliwan commented 7 years ago

how to convert the bootform::file to text for save the filename to the database