我在 laravel 4 上上传文件时遇到问题,这是代码
$file = Input::file('file');
$path = 'public/image';
$filename = Str::random(20) .'.'. File::extension(Input::file('logo.name'));
$file->move('public/image',$file->getClientOriginalName());
return Redirect::back();
当我运行代码时,我收到错误通知调用成员函数 move()。代码有什么问题?