Reputation: 5067
My inline style looks like:
style="background-image: url({{ asset('bundles/testblog/images/id.jpg') }});"
the part id
of the url must change depending on a varibale. How can I make this happen inside the asset.
I tried :
style="background-image: url({{ asset('bundles/testblog/images/'{{variable}}'.jpg') }});"
But to no avail.
Upvotes: 13
Views: 20012
Reputation: 1000
style="background-image: url({{ asset('bundles/testblog/images/' ~ variable ~ '.jpg') }});"
Upvotes: 6
Reputation: 13891
Use ~
for concatenation,
style="background-image: url({{ asset('bundles/testblog/images/' ~ variable ~ '.jpg') }});"
Also,
You don’t need to nest {{ ... }}
delimiters. The ones you used to wrap asset()
call are also used to print any other variable they contain.
Upvotes: 57