This commit is contained in:
2024-11-20 17:09:09 +01:00
parent d8882c93b9
commit ce7f5a1b4a
9 changed files with 275 additions and 57 deletions

View File

@ -24,6 +24,9 @@ class Accounting
#[ORM\Column(length: 255)]
private ?string $title = null;
#[ORM\Column(length: 255)]
private ?string $icon = null;
#[ORM\Column]
private ?bool $actif = null;
@ -90,6 +93,18 @@ class Accounting
return $this;
}
public function getIcon(): ?string
{
return $this->icon;
}
public function setIcon(string $icon): static
{
$this->icon = $icon;
return $this;
}
public function isActif(): ?bool
{
return $this->actif;