Im trying to do simple images upload in Laravel. But when I'm trying to submit form Laravel gives me error:
Call to a member function move() on a non-object
Method that stores image:
public function store(ArticleRequest $request)
{
$destinationPath = 'uploads';
$file = Input::file('image');
$file->move($destinationPath, $file);
}
Upload Form:
<div class="form-group">
{!! Form::file('image',['class' => 'form-control']) !!}
</div>