[Vuejs]-How to retrieve image from server vuejs?

0👍

Make sure that storage is accessible to begin with:

php artisan storage:link

then your image url is wrong:

<td><img :src="`/storage/image/${post.image}`"/></td>

Leave a comment