Reputation: 1
I copy project laravel to new hosting and new domain, its working fine. But the problem is when i upload new image, that image successfully upload to file storage/app/public/upload/folder, but that image not showing on page. See below image
Upvotes: 0
Views: 416
Reputation: 546
You need to run: php artisan storage:link
to link storage to public folder
Upvotes: 1