forme création sortie

This commit is contained in:
marvin
2024-11-20 15:48:32 +01:00
parent e6954b6ce3
commit f25295ae5c
5 changed files with 74 additions and 17 deletions

View File

@@ -18,13 +18,13 @@ class Sortie
#[ORM\Column(length: 255)]
private ?string $nom = null;
#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, nullable: true)]
private ?\DateTimeInterface $dateHeureDebut = null;
#[ORM\Column(nullable: true)]
private ?int $duree = null;
#[ORM\Column(type: Types::DATE_MUTABLE, nullable: true)]
#[ORM\Column(type: Types::DATETIME_IMMUTABLE, nullable: true)]
private ?\DateTimeInterface $dateLimiteInscription = null;
#[ORM\Column(nullable: true)]