Загрузка файла Laravel

Получение следующей ошибки

Не удалось создать каталог « http://website.com/public/uploads/ »

Мой код:

$file = Input::file('upload'); $file_name = $file->getClientOriginalName(); $file_size = round($file->getSize() / 1024); $file_ex = $file->getClientOriginalExtension(); $file_mime = $file->getMimeType(); if (!in_array($file_ex, array('jpg', 'gif', 'png'))) return Redirect::to('/')->withErrors('Invalid image extension we just allow JPG, GIF, PNG'); $newname = $file_name; $file->move(URL::to('/').'/uploads/', $newname); 

Папка uploades существует.