I am working on a blogging application in Laravel 8. In the form I use for editing articles, I have a multiple-select element. I want the form to show the tags that have been selected. For this purpose, I did the ...
StackOverflow Latest Questions
First of all, I use Gedmo’s softdeletable to manage deleted entities. Also I have my own EntityField: namespace App\Form\Fields; use Symfony\Bridge\Doctrine\Form\Type\EntityType; use Symfony\Component\Form\AbstractType; class EntityField extends AbstractType { public function configureOptions(OptionsResolver $resolver): void { ...