Hi all
I have an Ecto schema S
with a fk to a schema E
.
In a live component, I would like to render form fields for S
plus the fields of E
.
Schema S
is in a reusable library L
, schema E
is changing for every Phoenix project that uses L
.
How can I render all the E
fields dynamically?
Thank you