I used the storage:link artisan command to generate a symlink to my application's assets for use in the views (logos, images, etc...). However, when I load my app to a Homestead VM, the images are not showing up on my views.
If you are using windows than you have to "run as administrator" the command line editor. Than enter the "vagrant up" and "vagrant ssh" and execute the command from there and it should work.
However, when I select the resorce in the view source inspector, it says there was an error loading the resource. Apparently, the server is returning a 404 not found error.
Could this be because I am using Homestead in-project? It seemed to work fine when I was testing it in MAMP.
It could be because of storage link you created as a normal user, and your homestead server tries to access it as vagrant which is not allowed, I guess. Try deleting the symlink and re creating it from homestead environment.
Also make sure, that filestorage/app/public/images/logo.png exists in project folder.