Profile images use a symbolic link from your app's storage folder to the public folder. You probably just need to update the symlink. https://spark.laravel.com/docs/4.0/installation#linking-the-storage-directory
Apr 26, 2017
4
Level 1
Broken images after moving to subdomain
I recently changed my Spark installation over to a subdomain, and updated my .env file to reflect this. Sadly, all of my profile images are broken, and still reflect the original domain. I did run cache:clear and view:clear, however the result is the same. Any thoughts?
Level 67
The problem is Spark stores the image path in the database using the url. If you look at the photo_url field in the users table they will all be http://youroldurl.com/..../image.png
So you need to clean it up at the database level and replace the old url in that field with the new one. I don't know why they did that...
Please or to participate in this conversation.