Hey folks,
I have a question regarding rendering of template files that are in a subfolder of the template folder.
How would I for example render these PageTable items, when their template files are inside templates/blocks/:
<div class="grid">
<?php foreach($page->grid_ext as $item): ?>
<div id="pteg_<?= $item->id ?>">
<?php echo $item->render(); ?>
</div>
<?php endforeach; ?>
</div>
I tried this, but get an error:
<?php echo $item->render(wire('config')->paths->templates . '/blocks/'); ?>