Home > front end >  Easy Admin 3. How to use one CRUD Controller for to write to 2 entities
Easy Admin 3. How to use one CRUD Controller for to write to 2 entities

Time:02-22

EasyAdmin 3 (Symfony) Is it possible to use one CRUD Controller for write to one table and write some data to another table?

CodePudding user response:

Your question is not really specific but you can override any CRUD action you want as cited in the documentation and persist data to other entities if you need to. https://symfony.com/doc/current/EasyAdminBundle/crud.html#customizing-crud-actions

  • Related