EasyAdminBundle
EasyAdminBundle copied to clipboard
EasyAdmin is a fast, beautiful and modern admin generator for Symfony applications.
- Closes https://github.com/EasyCorp/EasyAdminBundle/issues/3523 (which was already closed but it seems that it should not have been closed) - Closes https://github.com/EasyCorp/EasyAdminBundle/issues/3646 - Closes https://github.com/EasyCorp/EasyAdminBundle/issues/5267 - Closes https://github.com/EasyCorp/EasyAdminBundle/issues/4065 An example for having...
Hi, my questions may look trivial but I cannot find answer in docs. In my project I have an entity with latitude, longitude and address properties. I use leaflet to...
Hi, If you have a doctrine entity such as ```php #[ORM\Entity(repositoryClass: ProductRepository::class)] class Product { #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column(type: 'integer')] private $id; #[ORM\Column(type: 'uuid')] private UuidV6 $uuid; ... ``` If one...
Would close https://github.com/EasyCorp/EasyAdminBundle/issues/5355.
**Short description of what this feature will allow to do:** This feature is for CollectionField to add possibility to sort Collection, @javiereguiluz are you interested with a feature like this...
**Describe the bug** When you create a field with SlugField, on new page is working, but when you try to change it after in an edit action, it's seems to...
**Give the option to add pagination** I would like to know if it is possible to set up pagination in associationField and choiceField This feature would aim to significantly reduce...
**Describe the bug** When we try to implement a `CollectionField` : ````` php CollectionField::new('items') ->setEntryIsComplex() ->useEntryCrudForm(ItemCrudController::class); ````` And in `ItemCrudController::configureFields` ````` php AssociationField::new('otherEntity')->autocomplete(), `````` we will get : `Call to...
First off, love this bundle. It's cool and gets way more interesting with each version :) Curious, I have two scenarios I can't seem to figure out: 1. I've set...
Without this PR the association field renders a a dropdown and you cannot edit the associated entity but just select an already existing entity. If you want to edit an...