Level 6
try getFilename() method
Hello guys, I have an issue with moving a simple file upload:
$movedImage = $request->file('image')->move('admin/uploads/slides/', str_random(30) . '.' . $image->getClientOriginalExtension());
dd($movedImage); // works, and I can see the filename property
dd($movedImage->filename); // don't work
Maybe it's the normal behavior... If it is, I'd like to know why ? And how can I access the properties ?
Thanks!
Please or to participate in this conversation.