I'm trying to show the user saved images in product edit page. I'll show the images which is uploaded by the user in add product. I'm trying to convert the image to base64 format to show it in background.
when I use
file_get_contents
in my Controller it's gives me this error.
file_get_contents(full_path_to_image): failed to open stream: No such file or directory
My images is stored under "public/images/upload/FILE_NAME"
is there any trick that I miss or something that I make wrong