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.