Integration with EasyAdmin
Is there a way to integrate with EasyAdmin? Either all of the translations, like the normal Symfony forms work
$builder->add('bio', JsonTranslationType::class, [
'attr' => [
'rows' => 10,
],
"locales" => ["en", "es", 'tzo'] // optional, defaults to the configuration's `enabled_locales`
]);
Or I guess I could just pick one to display/edit at any one time, but I'd like to save it to the JsonTranslation field, not hack in a separate property for the original text.
Thanks, this is a cool bundle, I quite appreciate it.