我想使用 laravel 3 将多个文件上传到服务器,但是如何?查看代码:
{{ Form::open_for_files() }}
{{ Form::label('imgs', 'Image') }}
<input name="imgs[]" type="file" multiple="" />
{{ Form::label('', '') }}
{{ Form::submit('submit', array('class' => 'submit')) }}
{{ Form::close() }}
路线代码:
Input::upload('imgs', 'public/uploads' , 'abc.jpg');
但它不工作。请任何人帮忙。