Route to image in Laravel [closed]

Based on your question..as you want to display image in view.

run Command: php artisan storage:link

after that now you can display your image in view using Storage:url

<img src="https://stackoverflow.com/questions/52586801/{{ Storage:url($post->cover_image) }}">

Make sure to post code next time instead of screenshot.

Leave a Comment