I have two entities, Offer and Candidate, with a OneToMany relationship between them. The relevant code parts are the followings: In Offer.php: In Candidate.php: In OfferCrudController.php: In CandidateCrudController.php: My problem is that while in the case of Candidates EasyAdmin displays the Offer linked to its details page for each Candidate, for the Offers it displays only the non-clickable string representations
Tag: easyadmin3
How to create dropdown select in Symfony easy admin crud panel?
I am new in Symfony. I have relation tables such as authors, books and book_authors. One book can have many authors and one author can have many books. So, here is my tables: And now, I am trying to implement crud controller with easy admin extension. And But in BookAuthorsCrudController I have a problems: I can’t use book_id and author_id
Easy Admin 3 Sort by date returns: create_date has no field or association named create_date
I’m trying to sort a field either by asc or desc date. When i add the date field to my backend like so It works and it shows, but when i try to sort it i get the following error Does anyone know why or how this happens ? Thank you EDIT: here is the field in MyEntity Answer You