Level 6
Please try to be more specific.
paste your code in ``` //your code// ``` between these whenever you want to show your code
hi I dont know what is wrong with my code I cant save the path of the updated image in the uploads folder here is my code
$file = Input::file('attachment');
$name = time() . '-' . $file->getClientOriginalName();
$file = $file->move('uploads/', $name);
$article->image = $name;
$article->save(); ```
Please or to participate in this conversation.