Search code examples
symfonysymfony4easyadmin3

EasyAdmin 3 Symfony 5


How can I hide the button to create a comment of the page index? I dont need this button.

Comments list

thank you.


Solution

  • This is the solution.

     
    public function configureActions(Actions $actions): Actions
        {
            return $actions
            ->remove(Crud::PAGE_INDEX, Action::NEW)
            ;
        }