EasyAdminBundle
EasyAdminBundle copied to clipboard
EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
`guessClientExtension()` method can not be trusted because it depends on request data. In addition, it will be easier to write tests because the extension of the uploaded file no longer...
Scenario: * have two entity CRUD forms * have some entities in Entity 1 * have a few, or none in Entity 2 * have a association or relation to...
**Describe the bug** I have this piece of code in my CrudController: ``` private function getCostTypeCrudLink(): string { return $this->adminUrlGenerator ->setDashboard(AdminDashboardController::class) ->setController(CostTypeCrudController::class) ->setAction(Action::INDEX) ->generateUrl(); } ``` This should generate a...
**Describe the bug** I upgraded easyadmin-bundle to 4.6.0, and since then, I can no longer catch the invalid javascript event. **To Reproduce** If you add a simple eventListener to any...
**Description** I've added validation for fields inside collectionField (and option useEntryCrudForm) and it doesn't work **To Reproduce** ``` public function configureFields(string $pageName): iterable { return [ AssociationField::new('rangeEntity', 'range') ->setColumns('col-md-10 col-xxl-10')...
**Describe the bug** I can't explain why but when a AssociationField that has been rendered using renderAsEmbeddedForm the required field from the form are not shown in PROD environment, but...
**Describe the bug** If you have collection (for example) with `useEntryCrudForm` and in that form you have some fields with added assets (e.g. ImageField), that assets does not included in...
Imagine crud controller with following configuration ```php //... public function configureCrud(Crud $crud): Crud { return $crud ->setSearchFields(['child_collection.subentity.title']) ; } //... public function configureFields(string $pageName): iterable { return [ CollectionField::new('child_collection') ];...
**Describe the bug** The request handling of a custom action created with the linkToRoute method does not work as expected if the app is behind a reverse proxy. **Context** -...
**Short description of what this feature will allow to do:** > A breadcrumb or breadcrumb trail is a [graphical control element](https://en.wikipedia.org/wiki/Graphical_control_element) used as a navigational aid in [user interfaces](https://en.wikipedia.org/wiki/User_interface) and...