I have the following code that only saves the first image of the select, as I develop the cycle so that it saves all the selected images:
if(Input::file('img'))
{
$subir = $this->file->upload('categorias',Input::file('img'));
$categoria->img = $subir->id;
}
The form is simply the following:
<input type="file" name="img" id="file1" multiple="multiple">