@Log1x this looks awesome! I installed and I’m trying it out, but I can’t seem to get any output. I created a foreach loop that is pulling in partials based on acf_fc_layout (based on the recommendations of nathobson and jasonbaciulis):
@foreach ($components as $component)
@include('partials/builder/'.$component->acf_fc_layout)
@endforeach
Here are the contents of the partial, which is successfully loading, but not printing any of the field values:
<div class="image-text-overlay">
@group('image-text-overlay')
<div>
<h2>@sub('heading')</h2>
</div>
<div><img src="@sub('image', 'url')" alt="@sub('image','alt')"></div>
@endgroup
@debug
</div>
Here’s what’s in debug:
Anything I might be missing?