Is it possible to do this, and how? I have checkboxes which are either ticked or unticked and they need to be disabled. I have tried the following with no luck
// ticked
Form::checkbox(
$formOption['data']->ant_answer_type_id,
$formOption['data']->ant_answer_title,
true,
array('disabled')
)
// unticked
Form::checkbox(
$formOption['data']->ant_answer_type_id,
$formOption['data']->ant_answer_title,
array('disabled')
)