Support the ongoing development of Laravel.io →
posted 11 years ago
Views Blade

Simple one here. I have image paths in my table. The images are in /public. I would call those paths like so:

<img src="{{ $img->logo_path }}">

But I need to use {{ asset }}. The following does not work for me, but maybe give you an idea of what I mean:

<img src="{{ asset(' {{ $store->logo_path }} ') }}">

I need to use two {{ {{ }} }}, how would I do this?

Last updated 2 years ago.
0

try using <img src="{{ asset($store->logo_path ) }}">

Last updated 2 years ago.
0

The {{ }} shortcut is essentially just an echo, so as @mattcannon posted, you don't need to repeat the curly braces inside your first pair.

Last updated 2 years ago.
0

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}}">
Last updated 7 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Panoplr panoplr Joined 27 Feb 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.