Passing asset path to blade component

Consider the following:

  @component('components.container, [
    'bg_img' => "{{@asset('images/hero.png') }}",
  ])
  @endcomponent

Renders:

<div style="background-image:url(' <?php echo e(@asset('images/hero.png')); ?> ')"
</div>

How do I pass the asset path string to the blade component?

<x-container :bg_image="\Roots\asset('images/hero.png')"/>

Hey Alwaysblank,

Thank you for the response. I think it’s sending me in the right direction.

When I add this piece of markup, it renders literally, seemingly not reading the special x- syntax.
Does this have to be registered in site/web/app/themes/mytheme/app/Controllers? (by extending a “Sober” controller?)

Oh, I didn’t know what version of Sage you’re on. IIRC you may need Sage 10 in order to use the <x- syntax for components.

In your case it would probably look more like this:

  @component('components.container', [
    'bg_img' => \App\asset_path('images/hero.png'),
  ])
  @endcomponent

The @asset directive is iirc just a proxy for the asset_path() function, so you can just call the function directly.

2 Likes

That’s the ticket! As always, thank you so much for your responses alwaysblank. :smiley:

2 Likes

This topic was automatically closed after 42 days. New replies are no longer allowed.