images are not showing up in table
second image is of the image url.
Solution:Jump to solution
okay I found out from stackoverflow that the issue was with the symlink to the the storage folder.
had to run,
composer require symfony/filesystem
...10 Replies
Have you tried php artisan storage link ? And don't forget to fix the app url in .env file too.
storage:link is already done.
I changed the .env APP_URL to https://192.168.1.58 which is my server,
now when i open the image in a new tab i'm getting This site can’t be reached
So your mapping to them is incorrect
Ensure your driver and url etc is correct
my bad i set the app url to https, i changed it back to http now I'm getting not found
Your url contain
/storage
try remove and check whether image is coming or notStill doesn't
storage/app/public/hYnNIt00xOUHxd30U3hPfQJkchuBSc-metaV2hhdHNBcHAgSW1hZ2UgMjAyMy0wOS0yNyBhdCAwOS4xNC4wMC5qcGc=-.jpg
Show us your upload image form
Solution
okay I found out from stackoverflow that the issue was with the symlink to the the storage folder.
had to run,
composer require symfony/filesystem
then delete the current storage symlink and run,
php artisan storage:link --relative
which worked, anyhow thanks everyone.