EasyAdminBundle icon indicating copy to clipboard operation
EasyAdminBundle copied to clipboard

EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.

Results 609 EasyAdminBundle issues
Sort by recently updated
recently updated
newest added

**Describe the bug** I was initially trying to prevent crud entity creation inside a pre persist listener by throwing a special exception that can be displayed to the user, by...

**Describe the bug** The application sent out 500 error on disabling csrf proctection. **To Reproduce** Steps to reproduce this error and also, the EasyAdmin version used. Migrating from version 2.3.15...

When custom action is added on Index page and user has applied some filters, then the default Edit action URL loses filter parameters. As a result when user clicks on...

**Short description of what this feature will allow to do:** Rather than hide a field based on a page, user can create a custom way to determine whether the field...

**Short description of what this feature will allow to do:** I would like easy access to a unique string associated with each field. **Example of how to use this feature**...

The batch action failed with pretty URLs. Fixes https://github.com/EasyCorp/EasyAdminBundle/issues/6723

This can neither be described as a bug nor an issue. However, I've no better place to ask this. Consider there are 2 associate fields for `user` and `choices`. ```php...

Hello, I'm using a CollectionField for my documents field in my CrudController, and I wanted to access `$options['data']` to set the access granted for each document. This method doesn't work...

**Describe the bug** After updating the EasyAdmin package in our application, we noticed that custom action template paths no longer work when rendering the index page (using dropdowns for entity...

**Describe the bug** public function export(AdminContext $context, CsvExporter $csvExporter): Response { $fields = FieldCollection::new($this->configureFields(Crud::PAGE_INDEX)); $filters = $this->container->get(FilterFactory::class)->create($context->getCrud()->getFiltersConfig(), $fields, $context->getEntity()); $queryBuilder = $this->createIndexQueryBuilder($context->getSearch(), $context->getEntity(), $fields, $filters); $filename = 'result'.date_create()->format('d-m-y').'.csv'; return $csvExporter->createResponseFromQueryBuilder(...