#I wanted to display image in list page but I am not able to see image, this is my reference code
8 messages · Page 1 of 1 (latest)
F12 check url
https://laravel.com/docs/11.x/filesystem#the-public-disk
by default, the linked directory is saved atstorage/app/public, but you saved the files atstorage/app/avatar. (probably you are using the disk local)
So either you add the path to the config file, or just make sure you are using the correct driver
https://laravel.com/docs/11.x/filesystem#specifying-a-disk
specify the disk to use
you can reference this one.
I have solved issue using this
Oh good to hear that.