Add class to form->postbutton?

<?= $this->Form->postbutton( 'SALVAR TODOS OS BOLETOS', ['action' => 'gerarTodosBoletos'], ['confirm' => 'Deseja Imprimir Todos os Boletos?'], ['class' => 'btn btn-outline-primary statement'] ) ?>

Following the documentation, I added [‘class’] but it didnt work

The confirm and class values go in the same array, not separate ones.

1 Like