[Vuejs]-Vue.js and Laravel โ€“ images are not displayed after integrating vuejs with laravel

0๐Ÿ‘

Use

<html>
<base href="{{url('/')}}">
...

or places your base domain there

0๐Ÿ‘

try <img class="..." src="img/..." /> and make sure your image folder is in laravel public directory.

-1๐Ÿ‘

what i did,open the terminal from my project file and run the php artisan serve command, and it works fine , loads all the images

Leave a comment