@gabriel-cardoso We should note that for nor new, generating the _form or _table partial for a given resource affects the model and not the component, so we could easily :
Create some kind of basic CRUDComponent
Add a basic CRUD controller attached to it
Instantiate it through the usual component creation process (from UI)
Configure it to be linked to a given model
Use it in the admin
Customize the table and form views with the existing model oriented generators, as usual
This may have some impact on path helpers to allow them handling this specific case, but the overall result should allow us to make them more robust
@gabriel-cardoso We should note that for nor new, generating the
_form
or_table
partial for a given resource affects the model and not the component, so we could easily :CRUDComponent
This may have some impact on path helpers to allow them handling this specific case, but the overall result should allow us to make them more robust