Php – Symfony6 Form Render Object of class AppEntityUser could not be converted to string
I am trying to render form of Team entity which is attached to User with ManyToOne relationship. See below Entity Class: <?php namespace AppEntity; class Team { #[ORMId] #[ORMGeneratedValue] #[ORMColumn] private ?int $id = null; #[ORMManyToOne(inversedBy: 'teams')] #[ORMJoinColumn(nullable: false)] private…