thats a temporary file created by php. You have to move it to a new location and give it a filename
https://laravel.com/docs/5.8/requests#storing-uploaded-files
$path = $request->file('image')->store('upload'); return $path;
after use this, it is returning a value of uploads/d87478f7c4717c356353a760fab9addc.jpeg but there is no file there? I checked in storage/apps , storage/apps/public. But also it is not there. can you tell me how to fix it ?
Please or to participate in this conversation.