[Vuejs]-I save image in storage/app/public why when I run website on server image not show

1👍

Run the following command on your server:

php artisan storage:link 

This command will create a symlink of your storage in public folder. As laravel app’s only public folder is publicly accessible, so it can read data from public/storage

0👍

Run , php artisan storage:link command in your server.

it will create a symbolic link of storage in your public folder.

Leave a comment