if you look in public_html/storage and do not see your files then your symlink is incorrect
Did you run the artisan storage:link command after creating the link?
Here is my symlink file uploaded to public_html:
<?php
symlink('/home/girlz/storage/app/avatars', '/home/girlz/public_html/storage');
My pictures are stored there:
/girlz/storage/app/avatars
// picture1.jpg
// picture2.jpg
And I want to store them there:
/home/girlz/public_html/storage
The problem is that the files are not stored in /home/girlz/public_html/storage and I cannot access them. Even with the symlink.
Please or to participate in this conversation.