Scottnj - Repeater fields with component blocks...
# ❓questions
s
Repeater fields with component blocks? I have been able to create repeater fields using blocks. Is it possible to create repeaters using component blocks? I put
Copy code
Repeater::make()->type('carousel_item')
in my Block Component. Where do I put the carousel_item file? The documentation doesn't make this clear.
i
with this code, you would put it under
views/twill/repeater/carousel_item.blade.php
, but since you're using components, you probably want to use the form builder for repeaters too, and for that we have the InlineRepeater field
s
I missed that part, the InlineRepeater is exactly what I am looking to do. Thank you so much!