I created a symlink to show images saved in the storage dir in my view.
For that I ran this command:
ln -s /Users/myname/code/myApp/storage/app /Users/myname/code/myApp/public/storage
That did create me a storage folder inside public, the storage folder contains a folder name images, which I want to show in my view.
I am trying to show them like this:
<img src="{{ asset('storage/app/' . $categoryValue->category_avatar) }}" />
But the image tag is still empty and I get this error message:
GET http://myapp.dev/storage/app/images/TpHsZhQBMVdihEtSwiPo6hz36l1hE2K5joFfaerB.jpeg 404 (Not Found
The path is correct but it still does not show the images.