Answer the question
In order to leave comments, you need to log in
How to change the type to hidden in the form for an entity type field?
There are entities Offer and Image.
class Offer {
private $image;
// more properies
}
class Image {
private $id;
private $file;
function __toString() {
return (string) $this->file;
}
// more properies
}
$builder->add('image');
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question