EasyAdmin 3 Symfony 5

91 Views Asked by At

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

Comments list

thank you.

1

There are 1 best solutions below

0
On BEST ANSWER

This is the solution.

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