//Filetree of this location:
+---app
| | .gitignore
| |
| +---carrier_logo
| | ycWmHb2RtjYNIcj1w5CzzNLw1gA5rtz7u552Js2A.png //This is the file i want to show.
| |
| \---public
| .gitignore
|
Now I want to display this image in my template. But I can't seem to fetch the image.
It's best to use the default public disk there, and run the php artisan storage:link command to create the symlink to the actual /public dir (which is publicly accessible). You can't directly link to the /storage dir since that's outside of the DocumentRoot of the site (/public).
I'm assuming you want to display it regularly like <img src="/path/to/image"> and not something you're retrieving and sending to the browser directly.