You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
350B

  1. <?php
  2. namespace Lc\SovBundle\Controller\Admin;
  3. use EasyCorp\Bundle\EasyAdminBundle\Field\TextField;
  4. abstract class UserCrudController extends AbstractCrudController
  5. {
  6. public function configureFields(string $pageName): iterable
  7. {
  8. return [
  9. TextField::new('email')
  10. ];
  11. }
  12. }