php - Is there a way of calling my image from storage that is symlinked?
one text
Solution:
If you have already established the symbolic link ($php artisan storage:link) normally a link to your image is already created in the "public" folder (note that it is not the public folder that is in "storage" but rather the one located in the root of the project).
And it is in the public folder of the root that you will look for your image.
You can retrieve your image with the following syntax:
For example :
<img src='{{ Storage::url("assets/my-image.jpg") }}'>
//assets: is a folder located in "public/storage/assets" from the root.
And don't forget to check that your url is well formed (with a little dd())