i want to upload multiple files to server with laravel 3 but how? View code:
{{ Form::open_for_files() }}
{{ Form::label('imgs', 'Image') }}
<input name="imgs[]" type="file" multiple="" />
{{ Form::label('', '') }}
{{ Form::submit('submit', array('class' => 'submit')) }}
{{ Form::close() }}
Routes code:
Input::upload('imgs', 'public/uploads' , 'abc.jpg');
but it is not working. anybody help please.