- Remove folder “/public/storage”
- run command “php artisan storage:link”
- copy “/storage” folder from code-canyon downloaded file and upload to “/storage” on server.
- All should work
Explanation: /public/storage. This folder is exposed to internet, users form internet are allowed to view files if they know url. It’s like static folder that is linked to /storage folder. /storage folder is hidden from audience only you and your script can upload to this folder.
All data that are uploaded via cms are uploaded to /storage folder and this folder needs to be linked to /public/storage.