area17 / twill

Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible. Chat with us on Discord at https://discord.gg/cnWk7EFv8R.
https://twillcms.com
Apache License 2.0
3.71k stars 567 forks source link

Fix/2342 #2517

Closed zeezo887 closed 3 months ago

zeezo887 commented 5 months ago

Description

This allows multiple JSON repeaters to load correctly when using blade templates.

Usage: In the form file

<x-twill::repeater
    type="type"
    name="name1"
/>
<x-twill::repeater
    type="type"
    name="name2"
/>
<x-twill::repeater
    type="type"
    name="name3"
/>

In the Repository class

protected array $jsonRepeaters = [
    'name1' => 'type',
    'name2' => 'type',
    'name3' => 'type,
];

Related Issues

Fixes #2342