Skip to content

1.1.0

Compare
Choose a tag to compare
@Naoray Naoray released this 07 Jan 10:06
· 60 commits to main since this release

Added

  • nesting JSON fields is now possible
JSON::make('Address', 'address', [
    Text::make('Street'),

    JSON::make('Location', [
        Text::make('Latitude'),
        Text::make('Longitude'),
    ]),
]);