Symfony Create Form Multiple Entities

[Solved] Symfony Create Form Multiple Entities | Php Frameworks Symfony - Code Explorer | yomemimo.com
Question : symfony create form multiple entities

Answered by : khawla-touati

// src/Entity/Task.php
namespace App\Entity;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
class Task
{ protected $description; protected $tags; public function __construct() { $this->tags = new ArrayCollection(); } public function getDescription(): string { return $this->description; } public function setDescription(string $description): void { $this->description = $description; } public function getTags(): Collection { return $this->tags; }
}

Source : https://symfony.com/doc/current/form/form_collections.html | Last Update : Wed, 06 Jul 22

Answers related to symfony create form multiple entities

Code Explorer Popular Question For Php Frameworks Symfony