try using <img src="{{ asset($store->logo_path ) }}">
The {{ }} shortcut is essentially just an echo, so as @mattcannon posted, you don't need to repeat the curly braces inside your first pair.
Rather than putting it inside asset, you can directly pass public folder name and image name to src, It will directly take the image from public folder of the server.
<img ng-src="images/@{{item.name}}.svg" aria-label="@{{item.name}}">
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community