Level 75
$file = Input::file('ufile');
$file_name = $file->getClientOriginalName();
$file_ext = $file->getClientOriginalExtension();
$fileInfo = pathinfo($file_name);
$filename = $fileInfo['filename'];
$newname = $filename . $lid . "." . $file_ext;
$destinationPath = ROOTDIR . 'upload/imgdogs/';
//Input::file('ufile')->move($destinationPath, $newname);
$file->move($destinationPath, $newname);
///////////more code ////////////////////////////////////////////
ROOTDIR is a constant I made for me doesn't apply to you.