i'm trying to upload multi file with laravel4.
View:
{{ Form::open($address,array('route' => array('address.update', $address->id, 'files'=>true))) }}
{{ Form::file('images[]', ['multiple' => true]) }}
{{ Form::close() }}
Controller:
after choose some file and try to send files into controller i get NULL inside controller. for example:
public function postUpdate()
{
$files = Input::file('images');
dd($files);
}
$files in this phase is NULL, why?
Input::file('images');is null