Is it possible to add a class to the hidden form created by CakePHP's postLink form helper?
Here's my code
Form->postLink( ' ' . __('Delete'), ['action' => 'delete', $this->fetch('item')], ['confirm' => __('Are you sure you want to delete # {0}?', $this->fetch('item')) ,'escape' => false ,'title' => __('Delete') ,'class' => 'btn btn-danger btn-xs isAction' ]) ?>
Note that I'm not looking to add a class to the link that gets created.
Any ideas are welcome!