I also use database to get path to image and display, it is working as intended. Laravel is unable to write to my all_users folder (using filezila i confirmed that)
I don't get any errors
Website is hosted on DigitalOcean droplet ubuntu 20.04
My absolute path to all_users folder: /var/www/MYPROJECT/public/storage/all_users/user_id/ image.jpg
SOLVED: Problem was two copies of storage. When deploying project, GIT doesn't provide symlink to storage from public folder, that shortcut he made into folder itself. When deploying you must recreate symlink.
It is bad practice to upload storage with GIT to GITHUB