Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. // FormType
  2. ->add('birthday', BirthdayType::class, [
  3.                 'widget' => 'single_text',
  4.                 'label' => 'Birthday',
  5.                 'format' => 'd.m.Y',
  6.             ])
  7.  
  8. // DTO formularza
  9.     /**
  10.      * @Assert\Date
  11.      * @Assert\NotBlank(
  12.      *  message = "Data urodzin nie może być pusta."
  13.      * )
  14.      */
  15.     public $birthday;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement